-
-
Save pushmon/9935625 to your computer and use it in GitHub Desktop.
Node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<#if filename> | |
node_.txt | |
<#elseif title> | |
Node | |
<#elseif logo> | |
//dmnv44fd3imdv.cloudfront.net/www.pushmon.com/img/code/java.gif | |
<#elseif code> | |
var request = require('request'); | |
request('${urlstring}', | |
function(error, response, body) { | |
if (!error && response.statusCode == 200) { | |
console.log(body); | |
} | |
}); | |
</#if> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment