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