node-data-runner

0.0.4 • Public • Published

Node Data Runner

Calls a function for each value in an array and waits for a timeout between each call.

Usage

Useful for rate limiting api calls.

const {run} = require('node-data-runner')

function increment(x) {
    return x + 1
}

// runs increment function on 1,2,3 array every 200ms
run([1, 2, 3], increment, 200).then(console.log)

// expects [2,3,4]

function flip (x,y) {
    return [y,x]
}

// can also pass multiple arguments to the function with an array
run([[1,2]], flip, 200).then(console.log)

//expects [[2,1]]

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.0.42latest

Version History

VersionDownloads (Last 7 Days)Published
0.0.42
0.0.32
0.0.22
0.0.12

Package Sidebar

Install

npm i node-data-runner

Weekly Downloads

8

Version

0.0.4

License

MIT

Unpacked Size

3.66 kB

Total Files

4

Last publish

Collaborators

  • lolotrgeek