Skip to content

Instantly share code, notes, and snippets.

@gwsu2008
Created October 6, 2017 19:43
Show Gist options
  • Save gwsu2008/286380b3d6a5d53d89a844b4f4592fb6 to your computer and use it in GitHub Desktop.
Save gwsu2008/286380b3d6a5d53d89a844b4f4592fb6 to your computer and use it in GitHub Desktop.
get-html.js
var request = require('request');
request('https://0n2i23kb6f.execute-api.us-east-1.amazonaws.com/dev/mydemoresource', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body) // Show the HTML
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment