A lightweight http client adapted from phin and centra.
It works great with node
and bun
and comes with optional support for zstd
compression via fzstd
.
npm i phn
phn
supports zstd
compression if fzstd
is installed (not included)
npm i phn fzstd
const phn = require("phn");
const res = await phn({
url: 'https://example.org'
});
url
- URL to requestmethod
- HTTP method, default:GET
headers
- HTTP headers objectquery
- Object to be added tourl
as query stringdata
- Request body; json, buffer or object containing form dataform
- object containing form datacore
- options passed on tohttp(s).request
parse
- parse response body asjson
orstring
followRedirects
- follow redirects iftrue
maxRedirects
- maximum number of redirects to follow, default: infinitestream
- return stream asres.stream
instead ofres.body
compression
- handle compression, acceptbr
,gzip
anddeflate
, alsozstd
iffzstd
package is installed. string overridesaccept-encoding
headertimeout
- request timeout in millisecondsmaxBuffer
- maximum response buffer size
consume http response as stream
const phn = require("phn");
const stream = await phn({
url: 'https://example.org/',
compression: true,
stream: true,
});
stream.pipe(/* ... */)
use a custom agent
const phn = require("phn");
const https = require("https");
const agent = new https.Agent({ keepAlive: true });
await phn({
url: 'https://example.org/',
core: { agent },
});
get a classic callback interface
const phn = require("phn").unpromisified;
phn('https://example.org/', (err, res) => {
if (!err) console.log(res.body);
});
set options for any subsequent request
const phn = require("phn").defaults({
method: 'POST',
parse: 'json',
timeout: 2000
});
const res = await phn('https://example.org/')
phn
is tiny and comes with no required dependencies.
Package | Size |
---|---|
phn | |
slim-fetch | |
phin | |
r2 | |
isomorphic-fetch | |
needle | |
undici | |
got | |
superagent | |
axios | |
request | |
node-fetch |
phn
is a fork of phin and centra by Ethan Davis.