Skip to content

Instantly share code, notes, and snippets.

View MichalPaszkiewicz's full-sized avatar
🎓
Learning

Michal J A Paszkiewicz MichalPaszkiewicz

🎓
Learning
View GitHub Profile
@fat
fat / github.js
Created July 2, 2012 03:48
simple basic-auth node github api
// Simple Use:
// ----------
// github('/user/repos', callback);
// github('/repos/:user/:repo/issues', { user: user, repo: repo }, callback);
var request = require('request');
var querystring = require('querystring');
var github = function (path, options, callback) {
var username = 'username';