1.0.10 • Published 4 years ago

node-envelope v1.0.10

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

Node Envelope

NPM version Build Status Coverage Status Known Vulnerabilities Dependencies Downloads Install Size Contributors Pull Requests Welcome

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
1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago