Wrapper for the GitHub Gists API v3
npm install gisty 
A node.js wrapper for the GitHub Gists API v3.
``bash`
$ npm install gisty
`js
var Gisty = require('gisty');
var gist = new Gisty({
username: 'meritt'
});
gist.fetch('1111422', function(error, gist) {
if (error) {
throw new Error(error);
}
for (filename in gist.files) {
console.log(filename + "\n" + gist.files[filename].content + "\n\n");
}
});
`
`coffeescript
Gisty = require 'gisty'
gist = new Gisty username: 'meritt'
gist.fetch '1111422', (error, gist) ->
throw new Error error if error
console.log "#{filename}\n#{file.content}\n\n" for filename, file of gist.files
`
Grab latest source code and install all dev dependencies
`bash`
$ npm link
Change your host, client id, client secret in examples/get-access-token.coffee and after that run examples/get-access-token.coffee
`bash`
$ coffee examples/get-access-token.coffee
* fetch(gist_id, callback)comments(gist_id, callback)
* all(callback)
* public(callback)
* starred(callback)
*
* Alexey Simonenko, simonenko.su
The MIT License, see the included license.md` file.
