Skip to content

Instantly share code, notes, and snippets.

@jaggs6
Last active December 3, 2018 21:15
Show Gist options
  • Save jaggs6/87cdbf94ea22bc8f1bc9118bc66571f2 to your computer and use it in GitHub Desktop.
Save jaggs6/87cdbf94ea22bc8f1bc9118bc66571f2 to your computer and use it in GitHub Desktop.
github monitor
var request = require('request');
request
.get('https://api.github.com/', {
'auth': {
'token': process.argv[0]
}
})
.on('response', function(response) {
console.log(response.statusCode) // 200
console.log(response.headers['X-RateLimit-Remaining'])
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment