文件名称:limireq:轻松将批量 http(s) 请求限制为指定数量的异步管理、串行执行的链
文件大小:9KB
文件格式:ZIP
更新时间:2024-07-28 01:24:03
JavaScript
利米雷克 Limireq 是一个 Node.js 模块,它在给定时间限制并发活动请求的数量。 这在批量处理 API 数据而不使较小的服务器和/或客户端本身过载时非常有用。 安装 npm install limireq 使用示例 // Require the module var Limireq = require ( 'limireq' ) // Initialize a new instance var lr = new Limireq ( 25 ) // max of 25 concurrent connections at any time var usernames = [ ] // some array containing 50 usernames // Push a URL or Request.js options object for ( var i = 0 ; i <
【文件预览】:
limireq-master
----package.json(864B)
----LICENSE(11KB)
----index.js(3KB)
----README.md(3KB)
----tests()
--------run.js(3KB)