Created
April 11, 2015 00:05
-
-
Save IPRIT/35fad5ba4b9a4fa07bd2 to your computer and use it in GitHub Desktop.
Example Get with HTTP
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
| var args = process.argv.slice(2); | |
| var httpGet = require('./http_get'); | |
| httpGet(args[0], function(err, data) { | |
| if (err) throw err; | |
| console.log(data); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment