x-ray-tor

0.0.4 • Public • Published

x-ray-tor

Tor driver for x-ray.

Installation

npm install x-ray-tor

Usage

var Xtor = require('x-ray-tor');
var Xray = require('x-ray');

var x = Xray()
  .driver(Xtor());

x('http://google.com', 'title')(function(err, str) {
  if (err) return done(err);
  assert.equal('Google', str);
  done();
})

API

tor(options)

Initialize the Tor driver with options.

var x = Xray()
  .driver(Xtor({
    torHost: "my-tor-ip-address",
    torPort: "my-tor-port",
    torPassword: "my-tor-password"
  });

License

x-ray-tor is free--as in BSD. Hack your heart out, hackers.

  • NOTE: x-ray itself is licensed MIT.

Readme

Keywords

Package Sidebar

Install

npm i x-ray-tor

Weekly Downloads

4

Version

0.0.4

License

none

Last publish

Collaborators

  • cuzzo