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.
Parray is an utility to handle large array elements in parallel in Node environment.
$ npm install parray
var parray = require('parray');
var results = [];
parray.forEach([1, 2, 3], function (element, i) {
results[i] = element * 2;
}, function () {
console.log(results); // 2, 4, 6
console.log('done');
});
parray
module provides following API.
A function to execute a provided function once per array element in parallel.
array
: Required. An array.worker
: Required. A function being executed once per array element.element
: Required. A current element.index
: Required. An element index.traversedArray
: Required. An array object being traversed.callback
: Optional. A function being executed when all elements are handled.A function to accept a concurrency number and return another forEach
function which executes
a provided function once per array element in parallel with the specified cuncurrency.
If you use another forEach
function directly, default concurrency 10
is used.
concurrency
: Required. A number of concurrency.Use forEach(concurrency)
function.
var parray = require('parray');
var results = [];
parray.forEach(1)([1, 2, 3], function (element, i) {
results[i] = element * 2;
}, function () {
console.log(results); // 2, 4, 6
console.log('done');
});
Use Gate to await asynchronous calls.
var gate = require('gate');
var parray = require('parray');
var fs = require('fs');
var files = ['file1', 'file2'];
var g = gate.create();
parray.forEach(files, function (file) {
fs.readFile(file, 'utf8', g.latch({name: file, data: 1}));
}, function () {
g.await(function (err, results) {
if (err) throw err;
console.log(results[0]); // { name: 'file1', data: 'FILE1' }
console.log(results[1]); // { name: 'file2', data: 'FILE2' }
console.log('done');
});
});
FAQs
An utility to handle large array elements in parallel in Node environment
We found that parray 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.