socksified

0.0.2 • Public • Published

HTTP SOCKS5 support for node.js

WARNING: work in progress (for now only SOCKS5 is supported)

Install

$ npm install socksified

TODO

  • Test versions other than Node v0.8.14
  • SOCKS4 support
  • HTTPS support

Example

var http = require('http');
var SocksAgent = require('socksified').SocksAgent;
 
var socksAgent = new SocksAgent({
  socks_host: '127.0.0.1',
  socks_port: 1080
});
 
var options = {
    agent: socksAgent,
    host: 'www.google.com',
    port: 80,
    path: '/'
};
 
http.get(options, function(res) {
    console.log("Got response: " + res.statusCode);
}).on('error', function(e) {
    console.log("Got error: " + e.message);
});

Readme

Keywords

none

Package Sidebar

Install

npm i socksified

Weekly Downloads

2

Version

0.0.2

License

none

Last publish

Collaborators

  • vially