
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
level-mongo
Advanced tools
A basic mongo query interface for leveldb backend, future version will try to allow more advanced querying and partial & full updates
$ npm install level-mongo --save
Valid options for constructor object exposed by module are shown below
options:
'use strict';
const LevelMongo = require('level-mongo');
const db = new LevelMongo({
config: {
keyEncoding: 'ascii',
compression: false,
cacheSize: 4 * 1024 * 1024
},
collections: {
users: {
key: '_id'
}
},
location: './db'
});
db.open((err) => {
db.collections.users.findOne({ _id: 'abcd'}, (err, doc) => {
console.log(err, doc);
db.close((err) => {
console.log(err);
});
});
});
Mongo methods partially implemented on each collection object
findOne - find record by key
find - return all records within collection
insertOne - insert record, unique key must be embedded within object being inserted
insertMany - batch insert operation
deleteOne - find and delete one record by key
deleteMany - deletes all records within collection
updateOne - updates one record by merging modifier object into original document
count - return number of records in collection
getKeys - returns all keys stored within collection
FAQs
mongo like leveldb
We found that level-mongo 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.