Skip to content

Instantly share code, notes, and snippets.

@lukegackle
Created September 19, 2020 01:27
Show Gist options
  • Save lukegackle/6692e2ba2da501acc66f65274b9bd771 to your computer and use it in GitHub Desktop.
Save lukegackle/6692e2ba2da501acc66f65274b9bd771 to your computer and use it in GitHub Desktop.
Request-Promise Simplified
//Build the request
let req = {
method: "GET",
uri: "https://www.google.com.au",
port: 443,
resolveWithFullResponse: true
};
//Make the request
let resp = await rp(req);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment