Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
each-series
Advanced tools
Asynchronously iterate an array as a series. Similar to async.eachSeries, but as a small module.
Install through npm
npm install each-series
var each = require('each-series');
each([1,2,3,4,5,6,7], function(el, i, done) {
setTimeout(function() {
console.log(el);
done();
}, 100 - (el * 10));
}, function(err) {
console.log('Done!');
});
The module is only one function
each(array, iterator, [callback])
The callback is optional.
If an error is passed to the done
function passed to the iterator, iteration will be stopped and the callback
will be invoked with the error.
MIT License
FAQs
Asynchronously iterate an array as a series
The npm package each-series receives a total of 6,451 weekly downloads. As such, each-series popularity was classified as popular.
We found that each-series 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.