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.
Monq is a MongoDB-backed job queue for Node.js.
Connect to MongoDB by specifying a URI or providing host
, port
and database
options:
var monq = require('monq');
var client = monq('mongodb://localhost:27017/monq_example');
Enqueue jobs by supplying a job name and a set of parameters. Below, the job reverse
is being placed into the example
queue:
var queue = client.queue('example');
queue.enqueue('reverse', { text: 'foobar' }, function (err, job) {
console.log('enqueued:', job.data);
});
Create workers to process the jobs from one or more queues. The functions responsible for performing a job must be registered with each worker:
var worker = client.worker(['example']);
worker.register({
reverse: function (params, callback) {
try {
var reversed = params.text.split('').reverse().join('');
callback(null, reversed);
} catch (err) {
callback(err);
}
}
});
worker.start();
Workers will emit various events while processing jobs:
worker.on('dequeued', function (data) { … });
worker.on('failed', function (data) { … });
worker.on('complete', function (data) { … });
worker.on('error', function (err) { … });
npm install monq
npm test
You can optionally specify the MongoDB URI to be used for tests:
MONGODB_URI=mongodb://localhost:27017/monq_tests npm test
npm run jsdoc2md
FAQs
MongoDB-backed job queue for Node.js
The npm package monq receives a total of 244 weekly downloads. As such, monq popularity was classified as not popular.
We found that monq 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.