0.0.37 • Published 8 years ago

jstools-http v0.0.37

Weekly downloads
1
License
ISC
Repository
github
Last release
8 years ago

jEngine: $http

Bower version npm version

Installation

npm install jengine-http --save

or

bower install jengine-http --save

Usage

$http.get('/items.json', { prop1: 'value1' });
// GET .../items.json?prop1=value1

$http.post('/items.json', {
	prop1: 'value1'
});

$http.put('/items.json', {
	prop1: 'another value'
});

$http.delete('/items.json');

$http.patch('/items.json', {
	op: 'add', path: '/prop1', value: 'one more value'
});

$http.patch('/items.json')
	.remove('/prop1')
	.add('/list/-', { subprop: 'sample value' })
	.submit();

Cached URL

var httpItems = $http('items.json');

httpItems.get({ prop1: 'value1' });

httpItems.post({ prop1: 'value1' });

httpItems.put({	prop1: 'another value' });

httpItems.delete();

httpItems.patch({
	op: 'add', path: '/prop1', value: 'one more value'
});

httpItems.patch()
	.remove('/prop1')
	.add('/list/-', { subprop: 'sample value' })
	.submit();
0.0.37

8 years ago

0.0.36

8 years ago

0.0.35

8 years ago

0.0.34

8 years ago

0.0.33

8 years ago

0.0.28

9 years ago

0.0.27

9 years ago

0.0.25

9 years ago