Skip to content

Youky1/web-worker-fetch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

web-worker-fetch

Github repo

A simple way to use fetch in web worker

Install

npm i web-worker-fetch

Use

First, you should create a wf object:

import WebWorkerFetch from 'web-worker-fetch';
const wf = new WebWorkerFetch();

After that, you can use wf.fetch just like fetch.

Notice, the res you get from wf.fetch has been disposed by res.text()

wf.fetch('url', {
  method: 'POST', // *GET, POST, PUT, DELETE, etc.
    mode: 'cors', // no-cors, *cors, same-origin
    cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached
    credentials: 'same-origin', // include, *same-origin, omit
    headers: {
      'Content-Type': 'application/json'
      // 'Content-Type': 'application/x-www-form-urlencoded',
    },
    redirect: 'follow', // manual, *follow, error
    referrerPolicy: 'no-referrer', // no-referrer, *no-referrer-when-downgrade, origin, origin-when-cross-origin, same-origin, strict-origin, strict-origin-when-cross-origin, unsafe-url
    body: JSON.stringify(data) // body data type must match "Content-Type" header
}).then(res => console.log(res))

Borrowing ideas from Axios, web-worker-fetch provides requestInterceptor and responseInterceptor API

  • requestInterceptor: (option: Object):Object Get original option prop and return the true option for request
  • responseInterceptor: (res:any):any Get original response data and return true data you get from wf.fetch

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published