Skip to content

Instantly share code, notes, and snippets.

@lukegackle
Created September 19, 2020 01:20
Show Gist options
  • Save lukegackle/0387bb7cf3bf6bb28d3245c59ee06e24 to your computer and use it in GitHub Desktop.
Save lukegackle/0387bb7cf3bf6bb28d3245c59ee06e24 to your computer and use it in GitHub Desktop.
Request-Promise Standard Format
rp('http://www.google.com')
.then(function (htmlString) {
// Process html...
})
.catch(function (err) {
// Crawling failed...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment