1.7.4 • Published 8 years ago
http-traceroute v1.7.4
http-traceroute
A command line tool for following and showing HTTP redirects for a given
URL. Similar to the traceroute unix tool.

Installation
Install globally as a CLI:
npm install http-traceroute -gInstall as a module:
npm install --save http-tracerouteCLI Usage
http-traceroute [url]Module Usage
var TraceRoute = require('http-traceroute')var trace = new TraceRoute('https://github.com')
trace.on('readable', function () {
var hop = null
while (hop = this.read()) {
console.log(hop)
}
})
trace.once('error', function () {})
trace.once('end', function () {})License
MIT