1.0.3 • Published 2 months ago

fetchapi-module v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

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));
1.0.3

2 months ago

1.0.2

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago