Skip to content

Instantly share code, notes, and snippets.

View AskYous's full-sized avatar
💭
React > Angular

Yousef Shanawany AskYous

💭
React > Angular
  • Bay Area, California
  • 23:33 (UTC +03:00)
  • X @askyous
View GitHub Profile
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