1.0.7 • Published 8 years ago

fetch-worker v1.0.7

Weekly downloads
28
License
MIT
Repository
github
Last release
8 years ago

Fetch Worker

React Fetch Worker is an ES6 fetch wrapper that allows you to handle HTTP requests in a separate thread (Web Worker). Please note that this module is currently in its early stages of development. Therefore if you think you can help or suggest changes, you will be welcome to contact me :) How to use it:

API.fetch ('http: //my.api/service.json', { method: 'GET' }). Then (
    (response) => {
        console.log (response);
    }
    (reason) => {
        console.warn (reason);
    }
);
1.0.7

8 years ago

1.0.6

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago