Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lsongdev/socks-proxy
- Owner: lsongdev
- License: mit
- Created: 2017-02-10T07:06:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-12-30T06:20:11.000Z (about 5 years ago)
- Last Synced: 2024-12-31T10:05:38.723Z (10 days ago)
- Topics: network, networking, proxy, socks, socks-proxy, socks5
- Language: JavaScript
- Homepage: https://npmjs.org/socks-proxy
- Size: 9.77 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
---