1.0.6 • Published 6 years ago

jquery-envelope v1.0.6

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

jQuery Envelope

NPM version Build Status Coverage Status Known Vulnerabilities Downloads

A wrapper for jQuery's AJAX function to allow for simpler RESTful API transactions.

Client-Side Usage

<script src="jquery-envelope.js"></script>

<script type="text/javascript">
	envelope.setBaseUrl("http://127.0.0.1:3000");

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

			return console.log(result);
		}
	);
</script>

Installation

To install this module:

npm install jquery-envelope

Building

To build the distribution files for this module:

npm run build

or

gulp build
1.0.6

6 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago