nodejs request library, get the response time
Using the nodejs request library: https://github.com/mikeal/request var request = require('request'); request('http://example.com', function (error, response, body) { ... }) Is it possible to ...