Socket
Socket
Sign inDemoInstall

fetch-undici

Package Overview
Dependencies
602
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fetch-undici

Isomorphic exports of fetch from window and unduci


Version published
Weekly downloads
3.3K
decreased by-11.96%
Maintainers
1
Install size
1.08 MB
Created
Weekly downloads
 

Changelog

Source

v4.0.0

Merged

Readme

Source

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

FAQs

Last updated on 07 Dec 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc