Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
marsdb-mongo
Advanced tools
MarsDB plugin for making all queries works through MongoDB, for rehydration
MarsDB plugin for making all queries works through MongoDB. It may be useful with any server-side application, based on MongoDB. Use awesome MarsDB's promise based interface and data processing pipeline. It also supports observable cursor, but it does not support scaling for now (observed only app update/remove/insert operations)
import Collection from ‘marsdb’;
import MarsMongo from 'marsdb-mongo';
// Setup MarsDB to use MongoDB as a backend
// and connect to a mongo database (async)
MarsMongo.configure({ url: 'mongodb://127.0.0.1/marsdb_awesome' });
// Now you can use configured collection, observe
// cursors and do cool things with the collection.
const users = new Collection(‘users’);
users.insert({name: 'Marsdb User'}).then((userId) => {
console.log(userId);
});
I’m waiting for your pull requests and issues.
Don’t forget to execute gulp lint
before requesting. Accepted only requests without errors.
See License
FAQs
MarsDB plugin for making all queries works through MongoDB, for rehydration
The npm package marsdb-mongo receives a total of 1 weekly downloads. As such, marsdb-mongo popularity was classified as not popular.
We found that marsdb-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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.