
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
migrator-js
Advanced tools
Simple extensible one-way migration tool for performing various tasks in order in multiple environments.
Simple extensible one-way migration tool for performing various tasks in order in multiple environments.
This package is distributed via npm
npm install migrator-js
yarn start
to start the example application.yarn build
to build the production version.yarn test
to run tests.yarn coverage
to gather code coverage.yarn lint
to lint the codebase.yarn prettier
to run prettier.yarn audit
to run all pre-commit checks (prettier, build, lint, test)Example migration script
import { IMigrationContext } from "../";
export default async (context: IMigrationContext): Promise<string> => {
// run any query, crop images etc
const sum = await context.connection.query("SELECT 1+1 AS sum");
return `1+1=${sum}`;
};
Example script that runs chosen migrations
Store it in src/scripts/migrate.ts
etc and add NPM script to run it.
package.json
{
"scripts": {
"migrate": "yarn build && node build/example"
}
}
src/scripts/migrate.ts
import chalk from "chalk";
import path from "path";
import { Migrator, MigratorTypeormStorage } from "../src";
// the contents of this file is usually kept in scripts/migrate.ts etc file and run through NPM scripts
// any context resources passed on to all migrations
export interface MigrationContext {
version: string;
}
async function run() {
// show an empty line between previous content
console.log("");
// create migrator
const migrator = new Migrator<MigrationContext>(
// this is the custom context matching MigrationContext
{
version: "1",
},
// migrator configuration
{
// pattern for finding the migration scripts
pattern: path.join(__dirname, "migrations", "!(*.spec|*.test|*.d).{ts,js}"),
// you can use MySQL / MariaDB / Postgres / SQLite / Microsoft SQL Server / Oracle / WebSQL
// see http://typeorm.io
storage: new MigratorTypeormStorage({
type: "sqlite",
database: path.join(__dirname, "..", "..", "migrate.sqlite3"),
}),
},
);
// attempt to run the migrator
try {
// run migrator providing pattern of migration files, storage to use and context to pass to each migration
// run the migrations and extract results
const { pendingMigrations, chosenMigrations, performedMigrations, failedMigrations } = await migrator.migrate();
// print results to console
if (pendingMigrations.length === 0) {
console.error(`${chalk.black.bgWhite(` NOTHING TO MIGRATE `)} `);
} else if (chosenMigrations.length === 0) {
console.error(`${chalk.black.bgWhite(` NO MIGRATIONS CHOSEN `)} `);
} else if (performedMigrations.length > 0 && failedMigrations.length === 0) {
console.error(`${chalk.black.bgGreen(` ALL MIGRATIONS SUCCEEDED `)} - ${performedMigrations.length} total`);
} else if (performedMigrations.length === 0 && failedMigrations.length > 0) {
console.error(`${chalk.black.bgRed(` ALL MIGRATIONS FAILED `)} - ${failedMigrations.length} total`);
} else {
console.error(
`${chalk.black.bgYellow(` SOME MIGRATIONS FAILED `)} - ${performedMigrations.length} succeeded, ${
failedMigrations.length
} failed`,
);
}
// exit with a non-zero code if any of the migrations failed
if (failedMigrations.length === 0) {
process.exit(0);
} else {
process.exit(1);
}
} catch (e) {
console.error(`${chalk.black.bgRed(` RUNNING MIGRATOR FAILED `)}`, e.stack);
} finally {
// gracefully close the connection
await migrator.close();
}
}
run().catch(e => console.error(chalk.black.bgRed(` RUNNING MIGRATOR FAILED `), e.stack));
FAQs
Simple extensible one-way migration tool for performing various tasks in order in multiple environments.
The npm package migrator-js receives a total of 8 weekly downloads. As such, migrator-js popularity was classified as not popular.
We found that migrator-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.