Skip to content

Instantly share code, notes, and snippets.

@mdobson
Created November 25, 2014 11:45
Show Gist options
  • Save mdobson/116368ed1bb838ab8b0b to your computer and use it in GitHub Desktop.
Save mdobson/116368ed1bb838ab8b0b to your computer and use it in GitHub Desktop.
Created with Gistify
var Gistify = require('./');
var username = process.env.USERNAME;
var password = process.env.PASS;
Gistify.authenticate(username, password, {}, function(err, token) {
});
Gistify.create('Test Gist', true, {'test.js': { 'content': 'console.log("hello");'}}, function(err, created) {
console.log(arguments);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment