Skip to content

Instantly share code, notes, and snippets.

@AdrianMachado
Created September 20, 2015 00:41
Show Gist options
  • Save AdrianMachado/6d5151fecac6f13c917b to your computer and use it in GitHub Desktop.
Save AdrianMachado/6d5151fecac6f13c917b to your computer and use it in GitHub Desktop.
//Lets try to make a HTTP GET request to modulus.io's website.
request('http://www.modulus.io', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body); // Show the HTML for the Modulus homepage.
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment