Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
queue-batch
Advanced tools
A minimalistic queue processor which emits events.
var Processor = require('queue-batch');
var longRunningFunction = (item, next) => {
console.log('got a new item to process');
console.log(item);
setTimeout(next, 1000);
};
var processor = new Processor(longRunningFunction);
processor.on('error', (error) => {
console.error('an error occured', error);
});
processor.on('empty', () => {
console.log('queue exhausted');
});
processor.push('item');
processor.push('one', 'two');
processor.concat([1, 2, 3]);
Which will output
got a new item to process
item
got a new item to process
one
got a new item to process
two
got a new item to process
1
got a new item to process
2
got a new item to process
3
Then after a second or so
queue exhausted
new Processor(callback, concurrency = 10, queue = []);
callback: function(item, next: function(error))
is a required function which will be invoked for each item push
ed or concat
ed to the processor.currency: ?int
is an optional positive integer, decribing the number of concurrent items can be handled by the callback
.queue: ?Array
is an optional array. If specified the items will automatically be added to the queue and the processor will start working.Creates a new batch processor with a handler callback, optional concurrency limit and queue. The batch processor is an EventEmitter
and will emit an empty
even, when the queue has been completed. If at any point the callback function returns an error to the next
callback option the error
event will be emitted on the processor object.
Processor.prototype.push(item1[, item2[, ...itemn]]);
item1 ... itemn
each argument provided will be push onto the queue. If the batch processor is not running at the concurrency limit the first item will immediately start getting processed.Processor.prototype.concat(array);
This has the same effect as processor.push(array[0], ... , array[n]);
or array.forEach((item) => processor.push(item));
Processor.prototype.on(eventName, handler);
eventName: 'error' | 'empty'
the event to which you wish to attach a handlerhandler: function
the desired handler function.error
- processor.on('error', function (error) { });
Emitted if an errors has been reported back via the processor callback
function through the next
callback.
var errorCallback = (item, next) => {
if (item === 2) { return next('2 is an exceptional number'); }
next();
};
var processor = new Processor(errorCallback);
processor.on('error', (error) => {
console.error(error); // outputs '2 is an exceptional number'
});
empty
- processor.on('empty', function () { });
Emitted when the queue no longer contains any items.
FAQs
Basic batch processing queue library
The npm package queue-batch receives a total of 292 weekly downloads. As such, queue-batch popularity was classified as not popular.
We found that queue-batch 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.