Skip to content

Instantly share code, notes, and snippets.

@AskYous
Forked from DanNi0130/potusScraper.js v1
Created January 23, 2019 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AskYous/a91740df77998dbbbe3ad5fa75013a6a to your computer and use it in GitHub Desktop.
Save AskYous/a91740df77998dbbbe3ad5fa75013a6a to your computer and use it in GitHub Desktop.
const rp = require('request-promise');
const url = 'https://en.wikipedia.org/wiki/List_of_Presidents_of_the_United_States';
rp(url)
.then(function(html){
//success!
console.log(html);
})
.catch(function(err){
//handle error
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment