8000 GitHub - bcomnes/fetch-undici: Isomorphic fetch with window.fetch and undici.fetch
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bcomnes/fetch-undici

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fetch-undici

Actions Status

Isomorphic exports of fetch, providing window.fetch in the browser, and undici.fetch in node.js.

npm install fetch-undici

Usage

import {
  fetch,
  Headers,
  Response,
  Request
} from 'fetch-undici';

Why

If you want to write an API client of some kind, that would be useful in the browser or in Node.js, fetch-undici provides the best implementation of fetch for the environment it's used in.

How

fetch-undici works by utilizing environment specific exports fields so that you can have dependency injection at the built-in node module resolver layer. It supports the following export fields:

  • main (cjs node)
  • browser (cjs browser)
  • exports.node (cjs node)
  • exports.browser (esm browser)

License

MIT

About

Isomorphic fetch with window.fetch and undici.fetch

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

  •  

Packages

No packages published

Contributors 3

  •  
  •  
  •  
0