Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
sqlitemongo
Advanced tools
Migrate your sqlite3 database to mongodb.
It copies all tables from sqlite3 into mongo collections under a specified database. For example, if you have a sqlite3 database file db.sqlite3
with tables: table1
and table2
, this tool uploads to a mongo database titled by default sqlite3
with collections table1
and table2
.
sudo npm install --global sqlitemongo
.sqlitemongo <sqlitepath> <mongo uri> [<mongo database>]
Just import sqlitemongo from npm npm i sqlitemongo
, and start using as below:
const sqlitemongo = require('sqlitemongo');
async function test() {
var sqlitePath = './test.sqlite3';
var mongoURI = 'mongo+srv://username:password@hostname.domain/test';
var mongoDbName = 'test-database';
await sqlitemongo(sqlitePath, mongoURI, mongoDbName /* optional */);
}
test().catch(console.error);
FAQs
Migrate your sqlite3 database to mongodb
The npm package sqlitemongo receives a total of 6 weekly downloads. As such, sqlitemongo popularity was classified as not popular.
We found that sqlitemongo 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.