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.
deep-mongo
Advanced tools
deep-mongo provides a restful styled mongodb store usable with deepjs. By other, it make mongodb queriable with RQL (https://github.com/persvr/rql).
See deep-restful for full API description.
npm install deep-mongo
var deep = require("deepjs"); // load core
require("deep-restful"); // load chained API
require("deep-mongo"); // load driver
deep.Mongo("items", "mongodb://127.0.0.1:27017/test", "items");
//...
deep.restful("items")
.post({ something:"yes"})
.slog()
.put({
hello:"putted object",
test:12
})
.slog()
.patch({
hello:"patched object",
})
.slog()
.get() // get all
.log();
see testcases for full usage.
FAQs
mongodb driver (store) for deepjs
The npm package deep-mongo receives a total of 0 weekly downloads. As such, deep-mongo popularity was classified as not popular.
We found that deep-mongo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
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.