@nymproject/mix-fetch-node-commonjs
v1.2.4-rc.1
Published
This package is a drop-in replacement for `fetch` in NodeJS to send HTTP requests over the Nym Mixnet.
Downloads
368
Readme
Nym MixFetch
This package is a drop-in replacement for fetch
in NodeJS to send HTTP requests over the Nym Mixnet.
Usage
const { mixFetch } = require('@nymproject/mix-fetch-node-commonjs');
...
const response = await mixFetch('https://nymtech.net');
const html = await response.text();