fetchapi-module
v1.0.3
Published
Fecth API adapter module, support CommonJS
Downloads
3
Readme
fetchapi-module
Fecth API adapter module, support CommonJS
Usage
Node.js / CommonJS
var fetch = require("fetchapi-module");
fetch("https://reqres.in/api/users")
.then((res) => res.text())
.then((body) => console.log(body));
fetch("https://reqres.in/api/users")
.then((res) => res.json())
.then((body) => console.log(body));