p-batcher
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

p-batcher

npm version npm downloads

A promise batcher, collect promises and run them in batch.

Install

npm i p-batcher

Usage

import { createPBatch } from "p-batcher"

const api = createPBatch((keys: number[]) => {
  console.log("batching", keys)
  return keys.map((k) => `res-${k}`)
}, {
  maxBatchSize: 3,
})

const res = await Promise.all([
  api(1),
  api(2),
  api(3),
  api(4),
  api(5),
])

console.log(res)

/*
output:
batching [ 1, 2, 3 ]
batching [ 4, 5 ]
[ 'res-1', 'res-2', 'res-3', 'res-4', 'res-5' ]

*/

License

MIT © vaakian

Readme

Keywords

none

Package Sidebar

Install

npm i p-batcher

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

9.34 kB

Total Files

7

Last publish

Collaborators

  • vaakian