Skip to content

Instantly share code, notes, and snippets.

@jcastellanos003
Created September 10, 2015 15:21
Show Gist options
  • Save jcastellanos003/3931cde5b011abe4da87 to your computer and use it in GitHub Desktop.
Save jcastellanos003/3931cde5b011abe4da87 to your computer and use it in GitHub Desktop.
httpGet('http://example.com/file.txt')
.then(
value => {
console.log('Contents: ' + value);
},
reason => {
console.error('Something went wrong', reason);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment