文件名称:async-run-limit:使异步功能仅运行限制大小,其余按队列运行
文件大小:27KB
文件格式:ZIP
更新时间:2024-05-30 01:16:04
JavaScript
异步运行限制 使异步功能仅运行限制大小,其余按队列运行。 让异步代码同时只运行指定的数量,其余的按数量执行。 安装 $ npm i -S async-run-limit 种类 declare function limit ( size : number , func ?: ( ... props : any [ ] ) => any ) : ( ... props : any [ ] ) => Promise < unknown> ; 用法 const limit = require ( 'async-run-limit' ) ; // async function demo const fn = ( str ) => new Promise ( ( resolve , reject ) => { const time = Math . random ( ) * 3e3 ;
【文件预览】:
async-run-limit-master
----test.js(2KB)
----package.json(1KB)
----package-lock.json(79KB)
----src()
--------index.ts(1KB)
----.npmignore(74B)
----.eslintrc.js(2KB)
----tsconfig.json(480B)
----.gitignore(247B)
----README.md(3KB)