12 lines
283 B
JavaScript
12 lines
283 B
JavaScript
var urllib = require('urllib');
|
|
|
|
urllib.request('http://cnodejs.org/', function (err, data, res) {
|
|
if (err) {
|
|
throw err; // you need to handle error
|
|
}
|
|
console.log(res.statusCode);
|
|
console.log(res.headers);
|
|
// data is Buffer instance
|
|
console.log(data.toString());
|
|
});
|