Skip to content

Instantly share code, notes, and snippets.

View AskYous's full-sized avatar
🇸🇦
Let's improve software in KSA

Yousef Shanawany AskYous

🇸🇦
Let's improve software in KSA
  • Bay Area, California
  • 09:09 (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