0.1.31 • Published 9 years ago
http-browser v0.1.31
http-browser
Installation
npm install http-browser --save
or
bower install http-browser --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.1.31
9 years ago
0.1.30
9 years ago
0.1.29
9 years ago
0.1.28
9 years ago
0.1.27
9 years ago
0.1.26
9 years ago
0.1.25
9 years ago
0.1.24
9 years ago
0.1.23
9 years ago
0.1.21
9 years ago
0.1.20
9 years ago
0.1.19
9 years ago
0.1.15
9 years ago
0.1.14
9 years ago
0.1.13
9 years ago
0.1.12
9 years ago
0.1.11
9 years ago
0.1.10
9 years ago
0.1.9
9 years ago
0.1.8
9 years ago
0.1.7
10 years ago
0.1.6
10 years ago
0.1.5
10 years ago
0.1.4
10 years ago
0.1.3
10 years ago
0.1.2
10 years ago
0.1.1
10 years ago
0.1.0
10 years ago