
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
array-chunk-reader
Advanced tools
npm install array-chunk-reader
Module for read array by chunks with promise
You can shuffle big array by segments.
const arrayChunkReader = require("array-chunk-reader");
let array = [];
for(let i = 0; i < 1000000; i++) {
array.push("element" + i);
}
let fn = (value) => {
return Promise.resolve(value);
}
/*
Each chunk will wait until all functions(fn) are finished.
Only then will a pause of the specified length and the next segment to be launched.
If the function returns a promise, all functions in one chunk will be executed in parallel.
*/
let options = {
size: 100, // chunk size, default = parseInt(Math.sqrt(array.length))
timeout: 10, // timeout after each chunk, default = 1
log: true // show all process information on log, default = true
startFrom: 0 // start position, default = 0
readTo: array.length // end position, default = array.length
}
let arrayReader = new ArrayChunkReader(array, options);
return arrayReader.start(fn).then(() => {
// finish
});
FAQs
Module for reading array by chunks using promise
The npm package array-chunk-reader receives a total of 162 weekly downloads. As such, array-chunk-reader popularity was classified as not popular.
We found that array-chunk-reader 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.