qmerce-rest

0.1.1 • Public • Published

qmerce-rest

A small library providing convenient methods to call a JSON-style REST API.

Installation

npm install qmerce-rest --save

Usage

const rest = require('qmerce-rest')
const api = rest(URL, { user: USER, password: PASSWORD });

api.getAsync()
.then((data) {
	data.counter++;
	return api.putAsync(data);
})
.then(() => api.deleteAsync())
.catch((err) => console.log(err));

/qmerce-rest/

    Package Sidebar

    Install

    npm i qmerce-rest

    Weekly Downloads

    0

    Version

    0.1.1

    License

    MIT

    Last publish

    Collaborators

    • wolfgangloch