Created
April 27, 2016 05:54
-
-
Save gregjhogan/096a3832f8e0beae0da3dc430f6e2b5f to your computer and use it in GitHub Desktop.
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 HttpClient = require("./HttpClient"); | |
| var client = new HttpClient.HttpClient("test-agent"); | |
| client.get('GET', 'https://www.google.com', {}, function(err, res, content) { console.log(err); console.log(content); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment