文件名称:p-retry:重试返回承诺或异步功能
文件大小:9KB
文件格式:ZIP
更新时间:2024-04-18 08:55:02
JavaScript
重试 重试返回承诺或异步功能 它执行指数补偿,并支持失败操作的自定义重试策略。 安装 $ 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
----.gitignore(23B)
----package.json(824B)
----.npmrc(19B)
----index.js(2KB)
----test.js(4KB)
----.github()
--------workflows()
--------funding.yml(91B)
----license(1KB)
----readme.md(4KB)
----index.test-d.ts(662B)
----.gitattributes(19B)
----.editorconfig(175B)
----index.d.ts(3KB)