0.0.24 • Published 3 years ago

clientoid v0.0.24

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

Getting Started

Usage in Browser with Netlify's CDN

<script src="https://clientoidjs.netlify.app/dist/clientoid.web.min.js"></script>

Then just start making requests like this

const Client = new Clientoid();
Client.get("https://httpbin.org/get", "json")
  .then((res) => {
    console.log(res);
  })
  .catch((err) => console.error(err));

Usage in Node.js using NPM

Install Clientoid.js like this

npm i clientoid

In your JS file

const Clientoid = require("clientoid");
const Client = new Clientoid();
Client.get("https://httpbin.org/get", "json")
  .then((res) => {
    console.log(res);
  })
  .catch((err) => console.error(err));

This part of documentation will be updated

0.0.22

3 years ago

0.0.23

3 years ago

0.0.24

3 years ago

0.0.21

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago