![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
array-chunk-reader
Advanced tools
npm install array-chunk-reader
Module for reading array by chunks using promise
const arrayChunkReader = require("array-chunk-reader");
let array = [];
for(let i = 0; i < 1000000; i++) {
array.push("element" + i);
}
// Handle each item
const fn = (value) => {
return Promise.resolve(value);
}
// Handle a chunk
const fnChunk = (allChunkValuesList) => {
return Promise.resolve(allChunkValuesList);
}
const options = {
size: 100, // chunk size, default = Math.floor(Math.sqrt(array.length))
timeout: 10, // timeout after each chunk, default = 1
log: true, // to log the process, default = true
from: 0, // start position, default = 0
to: array.length // end position, default = array.length
}
const arrayReader = new arrayChunkReader(array, options);
return arrayReader.start(fn, fnChunk).then(() => {
// finish
});
Every chunk waits of all "fn" functions completion. "fnChunk" function will be called after that.
Then there will be a pause of a given length and the next chunk will start.
If a function returns a promise, all functions in one chunk will be called in parallel.
returns the current chunk size
FAQs
Module for reading array by chunks using promise
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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.