
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
slite-change
Advanced tools
A simple change management system for SQLite3 written in pure JavaScript/TypeScript.
A simple change management system for SQLite3 written in pure JavaScript/TypeScript.
This needs work. Expecting it to be something like
npm install slite-change
This library reads a sequence of SQL files and applies those as changes to an SQLite3 database.
Only new changes are applied. A change log table maintains the tracking of what changes are already applied.
Change files are simple SQL, because XML sucks!
Each change must begin with a comment line starting with --changeset <Author Name>:<change ID>
Each change set file is read in order of directory listing. Change ID values are integers. They must never repeat. They are applied in order as they are found with the changeset file.
This is an example of a simple change set.
--changeset Royce:1
CREATE TABLE 'users' (
'id' int NOT NULL,
'firstname' VARCHAR(50),
'lastname' VARCHAR(50),
'username' VARCHAR(50),
'passwd' VARCHAR(50),
'emailAddress' VARCHAR(50),
PRIMARY KEY ('id'));
INSERT INTO 'users' (id, firstname, lastname, username, passwd, emailAddress) VALUES (0, 'admin', 'admin', 'admin', 'password', 'roo@localhost');
CREATE TABLE 'config' (
'parameter' VARCHAR(45) NULL,
'value' VARCHAR(45) NULL,
PRIMARY KEY ('parameter'));
INSERT INTO 'config' ('parameter','value') VALUES ('db_version', '1');
Once a change set has been appled to a database, no more changes should be made to that change ID
, additional changes should be
added to a new changeset file with the next value of change ID
.
Example changes can be found in db-changes
Put SQL files into a resources directory and create an instance of slite-change with the arguments of the DB instance and change directory.
this.Sql = new sqlite.Database('my_database.db', (err) => {
if (err) {
console.log('Could not connect to database', err)
} else {
console.log('Connected to database');
let ChangeManager = new SqliteChangeManagement(this.Sql, './src/resources/db-changes/');
}
});
Send emails to osgnuru@gmail.com
Anyone is welcome to fork this project on GitLab slite-change
Submit a pull request and I will review it.
SQLite3 team!!! 🍺🍺🍺
GPL-2.0-only
This is a new project and the authors first time posting to NPM. If something is not working please send an email to the contact above.
FAQs
A simple change management system for SQLite3 written in pure JavaScript/TypeScript.
The npm package slite-change receives a total of 2 weekly downloads. As such, slite-change popularity was classified as not popular.
We found that slite-change 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.