0.0.1 • Published 10 years ago

torius v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

torius

Torius is simple module to work with TOR network

Installation

$ npm install torius

Usage Examples

request method

var Torius = require('torius');
var torius = new Torius({ host: 'localhost', port: 9050 });

var options = {
  url: 'http://google.com',
  method: 'POST',
  body: {
    q: 'tor goes wild'
  }
}; 

torius.request(options, function (err, res, body) {
  console.log(err, res, body);
});

get method

var Torius = Helpers.tor;
var torius = new Torius();

var url = 'http://google.com';
var query = { q: 'tor' };

torius.get(url, query, function (err, res, body) {
  console.log(err, res, body);
});

post method

var Torius = Helpers.tor;
var torius = new Torius();

var url = 'http://google.com';
var body = { name: 'tor' };

torius.post(url, body, function (err, res, body) {
  console.log(err, res, body);
});