文件名称:fetch-optimizer:[无需维护]优化相关数据获取程序
文件大小:9KB
文件格式:ZIP
更新时间:2024-06-18 17:52:23
JavaScript
假设您有这些依赖项: 即您必须在获取f1数据之前获取f2和f3数据。 但是f2和f3可以并行获取。 fetch-optimizer会在可能的情况下处理并行运行它们的 fetcher。 // fetchers.js import { Poset , optimize } from 'fetch-optimizer' ; // define the fetchers. A fetcher must have the following signature: // () => Promise const fetchers = { f1 : ( ) => new Promise ( resolve => setTimeout ( resolve ( 'f1' ) , 200 ) ) , f2 : ( ) => new Promise ( resolve => setTimeout
【文件预览】:
fetch-optimizer-master
----.gitignore(19B)
----package.json(794B)
----src()
--------index.js(3KB)
--------dot.js(867B)
----LICENSE(1KB)
----index.js(35B)
----CHANGELOG.md(306B)
----README.md(2KB)
----lib()
--------index.js(4KB)
--------dot.js(1KB)
----.npmignore(31B)
----test()
--------index.js(4KB)