node-envelope

A wrapper for the request module to allow for simpler RESTful API transactions.


Keywords
request, envelope, json, rest, api, javascript, node, npm-module
License
MIT
Install
npm install node-envelope@1.0.10

Documentation

Node Envelope

NPM version Build Status Coverage Status Known Vulnerabilities Downloads

A wrapper for the request module to allow for simpler RESTful API transactions.

Server-Side Usage

const envelope = require("node-envelope");

envelope.setBaseUrl("http://127.0.0.1:3000");

envelope.get(
	"status",
	function(error, result) {
		if(error) {
			return console.error(error);
		}

		return console.log(result);
	}
);

Installation

To install this module:

npm install node-envelope

Building

To build the distribution files for this module:

npm run build

or

gulp build