fetch-polling
v1.0.0
Published
Simple fetch polling
Downloads
2
Readme
Fetch-polling
Simple fetch polling
Get started
yarn add fetch-polling
import FetchPolling from 'fetch-polling'
const fetchFunc = () => {
return fetch('https://api.github.com/repos/xuerzong/fetch-polling').then(res => res.json())
}
const options = {
fetch: fetchFunc,
delay: 500 /* ms */
}
const fetchPolling = new FetchPolling(options)
fetchPolling.start()