p retry:重试返回承诺或异步功能 源码
重试 重试返回承诺或异步功能 它执行指数补偿,并支持失败操作的自定义重试策略。 安装 $ npm install p-retry 用法 const pRetry = require ( 'p-retry' ) ; const fetch = require ( 'node-fetch' ) ; const run = async ( ) => { const response = await fetch ( 'https://sindresorhus.com/unicorn' ) ; // Abort retrying if the resource doesn't exist if ( response . status === 404 ) { throw new pRetry . AbortError ( response . statusText ) ; } retur
文件列表
p-retry-main.zip
(预估有个13文件)
p-retry-main
.gitignore
23B
package.json
824B
.npmrc
19B
index.js
2KB
test.js
4KB
.github
workflows
main.yml
450B
funding.yml
91B
暂无评论