0.0.2 • Published 11 years ago
gh-client v0.0.2
gh-client
Minimal streaming client for the github API
Usage
var github = require('gh-client')();
var request = github({
method: 'GET',
uri: '/users/octocat'
}).pipe(process.stdout);
request.on('error', function (err) {
// Oh noes!
});