1.0.1 • Published 6 years ago

menxapi v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

WebAPI

How to install?

npm i -S menxapi

How to make an http GET request?

const WebAPI = require('menxapi');

const webAPI = new WebAPI("https://api.coindesk.com/v1/bpi");

webAPI.get("currentprice/btcusd.json")
	.then(result => console.log(result))
	.catch(error => console.error(error));

How to make an http POST request with parameters?

const body = {
	username: "peppa",
	password: "pig",
};

webAPI.post("signup", body)
	.then(result => console.log(result))
	.catch(error => console.error(error));

Methods

get

WebAPI.get(path, body, query, headers)

post

WebAPI.post(path, body, query, headers)

delete

WebAPI.delete(path, body, query, headers)

put

WebAPI.put(path, body, query, headers)
1.0.1

6 years ago

1.0.0

6 years ago