1.1.3 • Published 1 year ago

autorq v1.1.3

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

autorq

自动请求工具

简介

按周期执行请求,暂时只支持get/post

安装

npm i autorq  ||  cnpm i autorq  ||  pnpm i autorq

使用

	import autorq from 'autorq';

	autorq( [ { method: 'get', url:"https://xxxx", data:{}, time:1000 }, ] );

	// 带日志
	autorq([ { method: 'get', url:"https://xxxx", data:{}, time:1000,name:'x请求' }, ], (cnt, name) => {
        console.log(`第${++cnt}次执行:${name}`);
    });