fetch
Using in Browsers
Using in Node.js
yarn add node-fetchimport fetch from 'node-fetch';import * as fetch from 'node-fetch';Text:
const response = await fetch(url);
console.log(response);
const text = await response.text();JSON:
Errors Handling
Last updated