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.
Crane is a message queue middleware layer for Node. Applications can be constructed by using middleware and defining routes.
This architecture has been proven effective by Express, which provides HTTP middleware. Crane adopts this approach, repurposing it for use with message queues, allowing workers to be built quickly and easily, using patterns familiar to Node.js developers.
$ npm install crane
var crane = require('crane');
var app = crane();
app.work('tasks/email', function(msg, next) {
console.log('sending email to: ' + msg.body.to);
msg.ack();
});
Adapters are used to connect to message queues, receiving messages and dispatching those messages to the application for processing.
The following table lists commonly used strategies:
Adapter | Developer |
---|---|
AMQP | Jared Hanson |
$ npm install
$ make test
Copyright (c) 2011-2014 Jared Hanson <http://jaredhanson.net/>
FAQs
Diligent work queue for Node.js.
The npm package crane receives a total of 6 weekly downloads. As such, crane popularity was classified as not popular.
We found that crane 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.