Skip to content

Instantly share code, notes, and snippets.

@pankajkgarg
Created October 24, 2012 15:05
Show Gist options
  • Save pankajkgarg/3946623 to your computer and use it in GitHub Desktop.
Save pankajkgarg/3946623 to your computer and use it in GitHub Desktop.
Unhandled parse error in mikeal/request library for node.js
var request = require("request");
var r = request.head("http://peyvandha.ir", function(error, res, body){
if(!error){
console.log('STATUS: ' + res.statusCode);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment