1.0.3 • Published 1 year ago

fetchapi-module v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago