node-jsonreq

JSON requests made easy, for Node.js.

MIT License

Downloads
23
Stars
6
Committers
1

jsonreq for Node.js

JSON requests made easy. No more dealing with low-level HTTP events, chunked requests or responses, buffering, parsing, try-catching, etc. Just get and post to send and receive.

Installation

npm install jsonreq

Usage

var json = require('jsonreq');

json.get('http://api.example.com/foo.json', function (err, data) {
    // ...
});

var obj = {
    key: 'value',
    items: [1, 2, 3],
};

json.post('http://api.example.com/foo.json', obj, function (err, data) {
    // ...
});

Development

npm link

Testing

npm test