• Stars
    star
    3,876
  • Rank 11,308 (Top 0.3 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created almost 4 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

😱 A better fetch API. Works on node, browser and workers.

ofetch

npm version npm downloads bundle Codecov License JSDocs

A better fetch API. Works on node, browser and workers.

🚀 Quick Start

Install:

# npm
npm i ofetch

# yarn
yarn add ofetch

Import:

// ESM / Typescript
import { ofetch } from 'ofetch'

// CommonJS
const { ofetch } = require('ofetch')

✔️ Works with Node.js

We use conditional exports to detect Node.js and automatically use unjs/node-fetch-native. If globalThis.fetch is available, will be used instead. To leverage Node.js 17.5.0 experimental native fetch API use --experimental-fetch flag.

keepAlive support

By setting the FETCH_KEEP_ALIVE environment variable to true, an http/https agent will be registered that keeps sockets around even when there are no outstanding requests, so they can be used for future requests without having to reestablish a TCP connection.

Note: This option can potentially introduce memory leaks. Please check node-fetch/node-fetch#1325.

✔️ Parsing Response

ofetch will smartly parse JSON and native values using destr, falling back to text if it fails to parse.

const { users } = await ofetch('/api/users')

For binary content types, ofetch will instead return a Blob object.

You can optionally provide a different parser than destr, or specify blob, arrayBuffer or text to force parsing the body with the respective FetchResponse method.

// Use JSON.parse
await ofetch('/movie?lang=en', { parseResponse: JSON.parse })

// Return text as is
await ofetch('/movie?lang=en', { parseResponse: txt => txt })

// Get the blob version of the response
await ofetch('/api/generate-image', { responseType: 'blob' })

✔️ JSON Body

ofetch automatically stringifies request body (if an object is passed) and adds JSON Content-Type and Accept headers (for put, patch and post requests).

const { users } = await ofetch('/api/users', { method: 'POST', body: { some: 'json' } })

✔️ Handling Errors

ofetch Automatically throw errors when response.ok is false with a friendly error message and compact stack (hiding internals).

Parsed error body is available with error.data. You may also use FetchError type.

await ofetch('http://google.com/404')
// FetchError: 404 Not Found (http://google.com/404)
//     at async main (/project/playground.ts:4:3)

To catch error response:

await ofetch('/url').catch(err => err.data)

To bypass status error catching you can set ignoreResponseError option:

await ofetch('/url', { ignoreResponseError: true })

✔️ Auto Retry

ofetch Automatically retries the request if an error happens. Default is 1 (except for POST, PUT, PATCH and DELETE methods that is 0)

await ofetch('http://google.com/404', {
  retry: 3
})

✔️ Type Friendly

Response can be type assisted:

const article = await ofetch<Article>(`/api/article/${id}`)
// Auto complete working with article.id

✔️ Adding baseURL

By using baseURL option, ofetch prepends it with respecting to trailing/leading slashes and query search params for baseURL using ufo:

await ofetch('/config', { baseURL })

✔️ Adding Query Search Params

By using query option (or params as alias), ofetch adds query search params to URL by preserving query in request itself using ufo:

await ofetch('/movie?lang=en', { query: { id: 123 } })

✔️ Interceptors

It is possible to provide async interceptors to hook into lifecycle events of ofetch call.

You might want to use ofetch.create to set shared interceptors.

onRequest({ request, options })

onRequest is called as soon as ofetch is being called, allowing to modify options or just do simple logging.

await ofetch('/api', {
  async onRequest({ request, options }) {
    // Log request
    console.log('[fetch request]', request, options)

    // Add `?t=1640125211170` to query search params
    options.query = options.query || {}
    options.query.t = new Date()
  }
})

onRequestError({ request, options, error })

onRequestError will be called when fetch request fails.

await ofetch('/api', {
  async onRequestError({ request, options, error }) {
    // Log error
    console.log('[fetch request error]', request, error)
  }
})

onResponse({ request, options, response })

onResponse will be called after fetch call and parsing body.

await ofetch('/api', {
  async onResponse({ request, response, options }) {
    // Log response
    console.log('[fetch response]', request, response.status, response.body)
  }
})

onResponseError({ request, options, response })

onResponseError is same as onResponse but will be called when fetch happens but response.ok is not true.

await ofetch('/api', {
  async onResponseError({ request, response, options }) {
    // Log error
    console.log('[fetch response error]', request, response.status, response.body)
  }
})

✔️ Create fetch with default options

This utility is useful if you need to use common options across several fetch calls.

Note: Defaults will be cloned at one level and inherited. Be careful about nested options like headers.

const apiFetch = ofetch.create({ baseURL: '/api' })

apiFetch('/test') // Same as ofetch('/test', { baseURL: '/api' })

💡 Adding headers

By using headers option, ofetch adds extra headers in addition to the request default headers:

await ofetch('/movies', {
  headers: {
    Accept: 'application/json',
    'Cache-Control': 'no-cache'
  }
})

💡 Adding HTTP(S) Agent

If you need use HTTP(S) Agent, can add agent option with https-proxy-agent (for Node.js only):

import { HttpsProxyAgent } from "https-proxy-agent";

await ofetch('/api', {
  agent: new HttpsProxyAgent('http://example.com')
})

🍣 Access to Raw Response

If you need to access raw response (for headers, etc), can use ofetch.raw:

const response = await ofetch.raw('/sushi')

// response._data
// response.headers
// ...

Native fetch

As a shortcut, you can use ofetch.native that provides native fetch API

const json = await ofetch.native('/sushi').then(r => r.json())

📦 Bundler Notes

  • All targets are exported with Module and CommonJS format and named exports
  • No export is transpiled for sake of modern syntax
    • You probably need to transpile ofetch, destr and ufo packages with babel for ES5 support
  • You need to polyfill fetch global for supporting legacy browsers like using unfetch

FAQ

Why export is called ofetch instead of fetch?

Using the same name of fetch can be confusing since API is different but still it is a fetch so using closest possible alternative. You can however, import { fetch } from ofetch which is auto polyfilled for Node.js and using native otherwise.

Why not having default export?

Default exports are always risky to be mixed with CommonJS exports.

This also guarantees we can introduce more utils without breaking the package and also encourage using ofetch name.

Why not transpiled?

By keep transpiling libraries we push web backward with legacy code which is unneeded for most of the users.

If you need to support legacy users, you can optionally transpile the library in your build pipeline.

License

MIT. Made with 💖

More Repositories

1

nitro

Next Generation Server Toolkit. Create web servers with everything you need and deploy them wherever you prefer.
TypeScript
5,939
star
2

consola

🐨 Elegant Console Logger for Node.js and Browser
TypeScript
5,919
star
3

magic-regexp

A compiled-away, type-safe, readable RegExp alternative
TypeScript
3,685
star
4

h3

⚡️ Minimal H(TTP) framework built for high performance and portability
TypeScript
3,433
star
5

unplugin

Unified plugin system for Vite, Rollup, Webpack, esbuild, Rolldown, and more
TypeScript
3,018
star
6

unbuild

📦 A unified JavaScript build system
TypeScript
2,270
star
7

magicast

🧀 Programmatically modify JavaScript and TypeScript source codes with a simplified, elegant and familiar syntax powered by recast and babel.
TypeScript
2,270
star
8

webpackbar

Elegant ProgressBar and Profiler for Webpack 3 , 4 and 5
TypeScript
2,056
star
9

unstorage

💾 Unstorage provides an async Key-Value storage API with conventional features like multi driver mounting, watching and working with metadata, dozens of built-in drivers and a tiny core.
TypeScript
1,707
star
10

jiti

Runtime Typescript and ESM support for Node.js
TypeScript
1,573
star
11

ipx

🖼️ High performance, secure and easy-to-use image optimizer.
TypeScript
1,491
star
12

fontaine

Automatic font fallback based on font metrics
TypeScript
1,478
star
13

destr

🚀 Faster, secure and convenient alternative for JSON.parse for artibrary inputs
TypeScript
1,058
star
14

ufo

🔗 URL utils for humans
TypeScript
1,002
star
15

defu

🌊 Assign default properties recursively
TypeScript
992
star
16

untun

🚇 Tunnel your local HTTP(s) server to the world! powered by Cloudflare Quick Tunnels.
TypeScript
969
star
17

changelogen

💅 Beautiful Changelogs using Conventional Commits
TypeScript
877
star
18

citty

🌆 Elegant CLI Builder
TypeScript
729
star
19

hookable

🪝 Awaitable Hooks
TypeScript
693
star
20

unhead

Unhead is the any-framework document head manager built for performance and delightful developer experience.
TypeScript
618
star
21

ohash

Super fast hashing library based on murmurhash3 written in Vanilla JS
JavaScript
526
star
22

uqr

Generate QR Code universally, in any runtime, to ANSI, Unicode or SVG.
TypeScript
523
star
23

unimport

Unified utils for auto importing APIs in modules.
TypeScript
498
star
24

c12

⚙️ Smart Configuration Loader
TypeScript
474
star
25

nypm

🌈 Unified Package Manager for Node.js and Bun
TypeScript
455
star
26

ungh

🐙 Unlimited access to github API
TypeScript
453
star
27

std-env

Runtime Agnostic JS utils
TypeScript
447
star
28

mlly

🤝 Common ECMAScript module utils
TypeScript
446
star
29

giget

✨ Download templates and git repositories with pleasure!
TypeScript
439
star
30

rou3

🌳 Lightweight and fast rou(ter) for JavaScript
TypeScript
432
star
31

listhen

👂 Elegant HTTP Listener
TypeScript
423
star
32

untyped

Generate types and markdown from a config object.
TypeScript
419
star
33

unctx

🍦 Composables in vanilla JS
TypeScript
396
star
34

pathe

🛣️ Drop-in replacement of the Node.js's path module module that ensures paths are normalized
TypeScript
396
star
35

unpdf

📄 Utilities to work with PDFs in Node.js, browser and workers
TypeScript
395
star
36

unenv

🕊️ Convert javaScript code to be runtime agnostic
TypeScript
358
star
37

mkdist

Lightweight file-to-file transpiler.
TypeScript
342
star
38

scule

🧵 String Case Utils
TypeScript
342
star
39

crossws

🔌 Cross-platform WebSocket Servers for Node.js, Deno, Bun and Cloudflare Workers.
TypeScript
299
star
40

rc9

Read/Write config couldn't be easier!
TypeScript
271
star
41

knitwork

🧶 Utilities to generate safe JavaScript code.
TypeScript
264
star
42

get-port-please

🔌 Get an available open port
TypeScript
243
star
43

runtime-compat

Display APIs compatibility across different JavaScript runtimes
Vue
230
star
44

theme-colors

🎨 Easily generate color shades for themes
TypeScript
213
star
45

perfect-debounce

Debounce promise-returning & async functions.
TypeScript
210
star
46

pkg-types

Node.js utilities and TypeScript definitions for package.json and tsconfig.json
TypeScript
206
star
47

lmify

🤙 Install NPM dependencies programmatically (please switch to unjs/nypm)
JavaScript
200
star
48

uncrypto

Single API for Web Crypto API and Crypto Subtle working in Node.js, Browsers and other runtimes
TypeScript
184
star
49

undio

⇔ Conventionally and Safely convert between various JavaScript data types
TypeScript
184
star
50

httpxy

🔀 A Full-Featured HTTP and WebSocket Proxy for Node.js
TypeScript
179
star
51

unwasm

🇼 WebAssembly tools for JavaScript
JavaScript
176
star
52

unkit

📙 UnJS standard library
TypeScript
174
star
53

undocs

Minimal Documentation theme and CLI for shared usage across UnJS projects.
Vue
161
star
54

automd

🤖 Automated markdown maintainer
TypeScript
161
star
55

db0

📚 Lightweight SQL Connector
TypeScript
160
star
56

node-fetch-native

better fetch for Node.js. Works on any JavaScript runtime!
TypeScript
154
star
57

template

📋 UnJS Project Starter Template
TypeScript
152
star
58

serve-placeholder

♡ Smart placeholder for missing assets
TypeScript
149
star
59

cookie-es

🍪 Cookie and Set-Cookie parser and serializer
TypeScript
132
star
60

website

UnJS website Content and Design!
Vue
129
star
61

mongoz

🥭 Zero Config MongoDB Server
TypeScript
108
star
62

jimp-compact

✏️ Lightweight version of Jimp -- An image processing library written entirely in JavaScript for Node.js
TypeScript
106
star
63

confbox

Compact and high quality YAML, TOML, JSONC and JSON5 parsers
TypeScript
102
star
64

nanotar

📼 Tiny and fast tar utils for any JavaScript runtime!
TypeScript
100
star
65

redirect-ssl

Connect/Express middleware to enforce https using is-https
TypeScript
100
star
66

mdbox

⬇ Just simple markdown utils
JavaScript
79
star
67

image-meta

Detect image type and size using pure javascript.
TypeScript
78
star
68

errx

Zero dependency library to capture and parse stack traces in Node, Bun, Deno and more.
TypeScript
78
star
69

compatx

🌴 Compatibility toolkit.
TypeScript
56
star
70

items-promise

Bare minimum async methods using promises
JavaScript
55
star
71

nitro-deploys

Continues Nitro deployments for end-to-end testing deployment providers.
TypeScript
49
star
72

unrouting

Making filesystem routing universal
TypeScript
45
star
73

ezpass

Dead simple password protection middleware
TypeScript
37
star
74

eslint-config

✅ Shared ESLint config for unjs repositories
TypeScript
36
star
75

workbox-cdn

Workbox Unofficial CDN and standalone NPM package.
Shell
32
star
76

externality

TypeScript
31
star
77

create-require

Polyfill for Node.js module.createRequire (<= v12.2.0)
JavaScript
31
star
78

codeup

Automated codebase updater [POC]
TypeScript
30
star
79

is-https

Check if the given request is HTTPS
TypeScript
29
star
80

impound

TypeScript
29
star
81

rollup-plugin-node-deno

Convert NodeJS to Deno compatible code with rollup
TypeScript
29
star
82

requrl

Grab full URL from request.
TypeScript
28
star
83

fs-memo

Easy persisted memo object for Node.js
TypeScript
26
star
84

bundle-runner

Run webpack bundles in Node.js with optional VM sandboxing
TypeScript
25
star
85

community

UnJS Community Notes
22
star
86

renovate-config

16
star
87

nitro-preset-starter

TypeScript
16
star
88

glob-native

TypeScript
16
star
89

nitro-starter

Nitro starter template
TypeScript
16
star
90

governance

UnJS Governance Notes
15
star
91

.github

Community Health Files
8
star
92

unjs.github.io

HTML
5
star
93

html-validate-es

TypeScript
4
star