1.7.4 • Published 7 years ago

http-traceroute v1.7.4

Weekly downloads
9
License
MIT
Repository
github
Last release
7 years ago

http-traceroute

A command line tool for following and showing HTTP redirects for a given URL. Similar to the traceroute unix tool.

screen shot 2016-02-22 at 12 43 13

Build status js-standard-style

Installation

Install globally as a CLI:

npm install http-traceroute -g

Install as a module:

npm install --save http-traceroute

CLI 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

1.7.4

7 years ago

1.7.3

7 years ago

1.7.2

7 years ago

1.7.1

7 years ago

1.7.0

7 years ago

1.6.1

8 years ago

1.6.0

8 years ago

1.5.0

8 years ago

1.4.1

8 years ago

1.4.0

8 years ago

1.3.0

8 years ago

1.2.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago