
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
node-async-loop
Advanced tools
Loop through an array to execute asynchronous actions on each element.
Loop through an array to execute asynchronous actions on each element.
Sometimes you must execute an asynchronous action on each elements of an array, but you must wait for the previous action to complete before proceed to the next.
Features:
npm install --save node-async-loop
var asyncLoop = require('node-async-loop');
asyncLoop(array[, from[, to]], callback[, endCallback]);
array: array
The array to loop
from (optionnal): integer
The starting position, including (Default: 0).
to (optionnal): integer
The final position, including (Default: array.length - 1).
callback: function(item, next)
The function called for every elements.
It must call next()
so that the next array element is executed.
At the end endCallback
will be called!
On error it must call next(errorObject)
and iteration will be stopped and the endCallback called with errorObject.
endCallback (optionnal): function(err)
This function is called at the end.
The err
variable is null if everything was fine, otherwise it contains the error.
General usage:
var asyncLoop = require('node-async-loop');
var array = ['item0', 'item1', 'item2'];
asyncLoop(array, function (item, next)
{
do.some.action(item, function (err)
{
if (err)
{
next(err);
return;
}
next();
});
}, function (err)
{
if (err)
{
console.error('Error: ' + err.message);
return;
}
console.log('Finished!');
});
For example, create folder recursively:
var fs = require('fs');
var asyncLoop = require('node-async-loop');
var directories = ['test', 'test/hello', 'test/hello/world'];
asyncLoop(directories, function (directory, next)
{
fs.mkdir(directory, function (err)
{
if (err)
{
next(err);
return;
}
next();
});
}, function (err)
{
if (err)
{
console.error('Error: ' + err.message);
return;
}
console.log('Finished!');
});
var asyncLoop = require('node-async-loop');
var displayItem = function(item, next) {
console.log(item);
next();
}
var array = ['A', 'B', 'C', 'D', 'E', 'F'];
// Loop all
asyncLoop(array, displayItem); // A, B, C, D, E, F
asyncLoop(array, 0, displayItem); // A, B, C, D, E, F
asyncLoop(array, 0, array.length - 1, displayItem); // A, B, C, D, E, F
// Loop partially to the end
asyncLoop(array, 1, displayItem); // B, C, D, E, F
asyncLoop(array, 2, displayItem); // C, D, E, F
// Loop partially
asyncLoop(array, 1, 3, displayItem); // B, C, D
asyncLoop(array, 0, 1, displayItem); // A, B
asyncLoop(array, 0, 2, displayItem); // A, B, C
// Loop partially in reverse order
asyncLoop(array, 3, 1, displayItem); // D, C, B
asyncLoop(array, 1, 0, displayItem); // B, B
asyncLoop(array, 2, 0, displayItem); // C, B, A
// Loop partially, using negative from/to values
// -1 is the last element (F)
// -2 is the before last element (E)
// -3 ... (D)
// ...
asyncLoop(array, 0, -2, displayItem); // A, B, C, D, E
asyncLoop(array, 1, -2, displayItem); // B, C, D, E
// So to loop in reverse order you can do
asyncLoop(array, array.length - 1, 0, displayItem); // F, E, D, C, B, A
// or simply
asyncLoop(array, -1, 0, displayItem); // F, E, D, C, B, A
// or simply simply
asyncLoop(array, -1, displayItem); // F, E, D, C, B, A
// Other examples
asyncLoop(array, -2, displayItem); // E, D, C, B, A
asyncLoop(array, -2, -4, displayItem); // E, D, C
asyncLoop(array, -4, -2, displayItem); // C, D, E
var asyncLoop = require('node-async-loop');
var obj = {
'aa': 'AAAA',
'bb': 'BBBB',
'cc': 'CCCC',
'dd': 'DDDD',
'ee': 'EEEE'
};
asyncLoop(obj, function (item, next)
{
console.log(item);
// Get object key with: item.key
// Get associated value with: item.value
next();
}, function ()
{
console.log('Finished!');
});
// Output:
//
// { key: 'aa', value: 'AAAA' }
// { key: 'bb', value: 'BBBB' }
// { key: 'cc', value: 'CCCC' }
// { key: 'dd', value: 'DDDD' }
// { key: 'ee', value: 'EEEE' }
// Finished!
FAQs
Loop through an array to execute asynchronous actions on each element.
The npm package node-async-loop receives a total of 1,591 weekly downloads. As such, node-async-loop popularity was classified as popular.
We found that node-async-loop 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 flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.