Crawl anonymously.
x-ray-tor has one usage: to interact use the Tor network to make x-ray requests.
npm install x-ray-tor
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();
})
Initialize the Tor driver with options
.
var x = Xray()
.driver(Xtor({
torHost: "my-tor-ip-address",
torPort: "my-tor-port",
torPassword: "my-tor-password"
});
x-ray-tor is free--as in BSD. Hack your heart out, hackers.
- NOTE: x-ray itself is licensed MIT.