github-token-user 
Get the Github user from a token
Install
$ npm install --save github-token-user
Usage
var githubTokenUser = require('github-token-user');
githubTokenUser('523ef6911917', function (err, data) {
if (err) {
throw err;
}
console.log(data);
});
API
githubTokenUser(token, cb)
token
Type: string
Token to get the user from.
cb(err, data)
Type: function
data contains an object with the user properties.
CLI
$ npm install --global github-token-user
$ github-token-user --help
Usage
$ github-token-user 523ef6911917
johndoe
License
MIT © Kevin Mårtensson