https://github.com/lsongdev/node-socks5
simple socks proxy client/server
https://github.com/lsongdev/node-socks5
network networking proxy socks socks-proxy socks5
Last synced: about 1 month ago
JSON representation
simple socks proxy client/server
- Host: GitHub
- URL: https://github.com/lsongdev/node-socks5
- Owner: lsongdev
- License: mit
- Created: 2017-02-10T07:06:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-12-30T06:20:11.000Z (about 6 years ago)
- Last Synced: 2025-10-24T03:04:59.558Z (5 months ago)
- Topics: network, networking, proxy, socks, socks-proxy, socks5
- Language: JavaScript
- Homepage: https://npmjs.org/socks-proxy
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## socks-proxy 
> 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
---