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.
async-it
is a series of generic asynchronous parallel and serial iterators
for node.js.
These iterators are based on the ES5 additions to Array
(forEach
, map
,
filter
, some
, any
, reduce
and reduceRight
). reduce
and reduceRight
are available in serial mode only.
Indexes are only passed to the callback in the aptly-named forEachWithIndex
for fear of
crowding the callback with little used arguments.
Like their sync counterparts, these iterators work on any object which has a numeric length property.
See examples/example.js
:
var path = require('path'),
fs = require('fs'),
asyncItParallel = require('async-it').parallel;
var files = ['foo.txt', 'bar.txt', 'does-not-exist.txt', 'baz.txt'];
files = files.map(function(file) {
return path.join(__dirname, 'files', file);
});
// select existing files
asyncItParallel.filter(files, function(file, cont) {
fs.exists(file, function(exists) {
cont(null, exists);
});
}, function(err, existingFiles) {
// collect their content
asyncItParallel.map(existingFiles, function(file, cont) {
fs.readFile(file, 'utf8', cont);
}, function(err, content) {
// output the ordered content to the console
console.log(content.join('\n'));
});
});
// Hi, I'm foo!
// Hello World, this is bar.
// I'm baz.
Licensed under the MIT license, Copyright 2010 Tobie Langel.
FAQs
Generic asynchronous iterators for node.js.
We found that async-it 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.