Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lsongdev/socks-proxy

simple socks proxy client/server
https://github.com/lsongdev/socks-proxy

network networking proxy socks socks-proxy socks5

Last synced: 8 days ago
JSON representation

simple socks proxy client/server

Awesome Lists containing this project

README

        

## socks-proxy ![[email protected]](https://img.shields.io/npm/v/socks-proxy.svg)

> socks proxy client and server in node.js

### Installation

```bash
$ npm install socks-proxy
```

### Example

```js
const socks = require('socks-proxy');

const server = socks.createServer(client => {
client.reply(0);
client.end('hello \n');
});

server.listen(1080);
```

### SPEC

+ rfc1928
+ rfc1929

### Contributing
- Fork this Repo first
- Clone your Repo
- Install dependencies by `$ npm install`
- Checkout a feature branch
- Feel free to add your features
- Make sure your features are fully tested
- Publish your local branch, Open a pull request
- Enjoy hacking <3

### MIT

---