Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
larvitdbmigration
Advanced tools
This is used to keep track of the database structure, content etc, and update it when need be via deploys.
Supported databases:
A table/index by default called db_version will be created, containing a single integer.
Scripts will be placed by default in process.cwd()/dbmigration/.js
Each migration script will be ran, and the db_version increased, until no more migration scripts exists.
npm i larvitdbmigration
In your application startup script, do something like this:
'use strict';
const DbMigration = require('larvitdbmigration');
const Db = require('larvitdb');
const dbDriver = new Db({
host: '127.0.0.1',
user: 'foo',
password: 'bar',
database: 'baz'
});
const dbMigration = new DbMigration({
dbType: 'mariadb',
dbDriver,
tableName: 'db_version', // Optional - used as index name for elasticsearch
migrationScriptPath: './dbmigration', // Optional
log // Optional, will use log.silly(), log.debug(), log.verbose(), log.info(), log.warn() and log.error() if given.
});
dbMigration.run().then(() => {
// Now database is migrated and ready for use!
}).catch(err => {
throw err;
});
'use strict';
const DbMigration = require('larvitdbmigration');
const dbMigration = new DbMigration({
dbType: 'elasticsearch',
url: 'http://127.0.0.1:9200',
indexName: 'db_version', // Optional
migrationScriptPath: './dbmigration', // Optional
axios // Optional, will use default axios instance if not specified.
log // Optional, will use log.silly(), log.debug(), log.verbose(), log.info(), log.warn() and log.error() if given.
});
dbMigration.run().then(() => {
// Now database is migrated and ready for use!
}).catch(err => {
throw err;
});
Lets say the current database have a table like this:
CREATE TABLE bloj (nisse int(11));
And in the next deploy we'd like to change the column name "nisse" to "hasse". For this you can do one of two methods:
Create the file process.cwd()/migrationScriptPath/1.js with this content:
'use strict';
// Always make the function async (or explicitly return a promise, see elasticsearch example below)
exports = module.exports = async function (options) {
const {db} = options;
await db.query('ALTER TABLE bloj CHANGE nisse hasse int(11);');
};
Create the file process.cwd()/migrationScriptPath/1.js with this content:
'use strict';
const axios = require('axios');
exports = module.exports = async function (options) {
const {url, log} = options;
log.info('Some script-specific logging');
await axios.put(`${url}/some_index/_mapping`, {
properties: {
names: {
type: 'string',
position_increment_gap: 100
}
}
});
};
IMPORTANT! SQL files will be ignored if a .js file exists.
Create the file process.cwd()/migrationScriptPath/1.sql with this content:
ALTER TABLE bloj CHANGE nisse hasse int(11);
Tadaaa! Now this gets done once and the version will be bumped to 1. If you then create a script named "2.js" or "2.sql" you might guess what happends. :)
FAQs
node.js database migration tool
The npm package larvitdbmigration receives a total of 1,605 weekly downloads. As such, larvitdbmigration popularity was classified as popular.
We found that larvitdbmigration demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.