Package Exports
- @polkadot/x-fetch
- @polkadot/x-fetch/browser
- @polkadot/x-fetch/node
- @polkadot/x-fetch/package.json
- @polkadot/x-fetch/react-native
Readme
@polkadot/x-fetch
A cross-environment fetch.
Install it via yarn add @polkadot/x-fetch
import { fetch } from '@polkadot/x-fetch';
...
const response = await fetch('https://example.com/something.json');
const json = await response.json();