Skip to content

Instantly share code, notes, and snippets.

@trieloff
Last active March 9, 2017 19:26
Show Gist options
  • Save trieloff/013509c40db9860746fe3977acadb676 to your computer and use it in GitHub Desktop.
Save trieloff/013509c40db9860746fe3977acadb676 to your computer and use it in GitHub Desktop.
var request = require('request-promise');
request({
"method":"GET",
"uri": "https://api.github.com/",
"json": true,
"headers": {
"User-Agent": "My little demo app"
}
}).then(console.log, console.log);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment