Skip to content

Instantly share code, notes, and snippets.

@ainame
Created December 13, 2011 05:00
Show Gist options
  • Select an option

  • Save ainame/1470673 to your computer and use it in GitHub Desktop.

Select an option

Save ainame/1470673 to your computer and use it in GitHub Desktop.
nodeによるhttpアクセス
var http = require('http');
http.get( {host:"google.com"} ,function(res){
console.log(res.headers);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment