1
Fork 0
Tiny helper library for migrating data.
Go to file
Bauke b798e18a16
Version 0.1.3!
2022-09-29 14:42:41 +02:00
source Make the default skip use <= instead. 2022-03-03 22:17:04 +01:00
tests Initial 0.1.0 commit! 🎉 2022-03-03 14:41:55 +01:00
.gitignore Initial 0.1.0 commit! 🎉 2022-03-03 14:41:55 +01:00
LICENSE Relicense to AGPL-3.0-or-later. 2022-09-29 14:25:55 +02:00
README.md Rewrite readme. 2022-09-29 14:40:28 +02:00
package.json Version 0.1.3! 2022-09-29 14:42:41 +02:00
pnpm-lock.yaml Update dependencies. 2022-09-29 14:26:13 +02:00
tsconfig.json Initial 0.1.0 commit! 🎉 2022-03-03 14:41:55 +01:00

README.md

Migration 🧳 Helper

Tiny helper library for migrating data.

Features

  • Zero dependencies.
  • 100% code coverage.
  • TypeScript definitions included.

Registry Setup

To use this package, add a registry for the @holllo scope to your npm configuration.

npm config set @holllo:registry https://git.bauke.xyz/api/packages/Holllo/npm/

Usage

import {migrate, Migration} from '@holllo/migration-helper';

// Your data that needs migrating.
const data = 'data';

// Your data's current version.
const version = '1.0.0';

// Create some migrations to apply.
const migrations: Array<Migration<string>> = [
  {
    version: '1.0.1',
    migrate: async (data: string) => `${data} migrated`,
  },
  {
    version: '1.0.2',
    migrate: async (data: string) => `${data} (again!)`,
  },
];

// Migrate your data.
const migrated = await migrate(data, version, migrations);

// Congratulations, your data is now on version 1.0.2!
console.log(migrated);

See the tests directory for how to use number, Date or a custom way of versioning.

License

Distributed under the AGPL-3.0-or-later license, see LICENSE for more information.