New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

x-ray-tor

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

x-ray-tor

Tor driver for x-ray

latest
Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

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.

Keywords

tor

FAQs

Package last updated on 07 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts