Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arstgit/shadowsocks-lite
Socks5 proxy client and server.
https://github.com/arstgit/shadowsocks-lite
shadowsocks socks5
Last synced: about 1 month ago
JSON representation
Socks5 proxy client and server.
- Host: GitHub
- URL: https://github.com/arstgit/shadowsocks-lite
- Owner: arstgit
- License: mit
- Created: 2018-06-23T11:13:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-14T07:45:21.000Z (almost 3 years ago)
- Last Synced: 2024-10-01T14:47:02.276Z (about 2 months ago)
- Topics: shadowsocks, socks5
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 15
- Watchers: 0
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# shadowsocks-lite
[![Build Status](https://travis-ci.org/derekchuank/shadowsocks-lite.svg?branch=master)](https://travis-ci.org/derekchuank/shadowsocks-lite)
[![npm version](https://badge.fury.io/js/shadowsocks-lite.svg)](http://badge.fury.io/js/shadowsocks-lite)## Super simple to use
Socks5 proxy client and server.
## Usage
1. Create a file named `config.json`, with the following content:
```
{
"server":"my_server_ip",
"server_port":8388,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"foobar"
}
```2. `cd` into the directory of `config.json`.
3. On your server, run:
```
npm install -g shadowsocks-lite
sslserver
```4. On your client, run:
```
npm install -g shadowsocks-lite
ssllocal
```5. Change the proxy setting in your browser.
```
protocol: socks5
hostname: 127.0.0.1
port: 1080
```