Socket
Socket
Sign inDemoInstall

argyle

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    argyle

Basic SOCKS5 server libary


Version published
Weekly downloads
34
decreased by-64.58%
Maintainers
1
Install size
10.4 kB
Created
Weekly downloads
 

Readme

Source

#argyle A basic SOCKS5 server library written for node.js.

##Features/Limitations argyle supports the most basic features of SOCKS and not a whole lot more, namely:

  • 'No authentication' auth mode only
  • CONNECT commmand only

In the future I may add support for more auth modes and commands, but currently this implementation works well for my main use case (sitting between a local browser and server).

##Usage ###Example: "Normal" proxy server

var argyle = require('argyle');

var server = argyle(8080, '127.0.0.1');
server.on('connected', function(req, dest) {
	req.pipe(dest);
	dest.pipe(req);
});

###Example: Throttled proxy server using node-throttled-stream

var argyle = require('argyle'),
	throttle = require('throttled-stream'),
	kbpsUp = 32,
	kbpsDown = 128;

var server = argyle(8080, '127.0.0.1');
server.on('connected', function(req, dest) {
	var tReq = throttle(req, kbpsUp * 1024),
		tDest = throttle(dest, kbpsDown * 1024);
	
	dest.once('error', function(err) { req.end(); })
		.on('close', function() { req.end(); });
	
	tReq.on('data', function(chunk) {
		dest.write(chunk);
	});
	tDest.on('data', function(chunk) {
		req.write(chunk);
	});
});

##Methods ###argyle([port = 8080], [host = 127.0.0.1], [debug = false]) Sets up a new SOCKS server on the specified port and host. If debug is specified, the server will output messages about the status of connections.

##Events ###'connected' A new client connected to the server and the socket to their requested destination is now open. Handlers for this event are passed a request socket, corresponding to the client that made the request from the server, and a destination socket, corresponding to the server that they requested to connect to.

##Installation With npm:

npm install argyle

##License WTFPL

Keywords

FAQs

Last updated on 12 Jan 2016

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc