shadowsocks-lite

1.0.9 • Public • Published

shadowsocks-lite

Build Status npm version

Super simple to use

Socks5 proxy client and server with fewer config params.

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"
    }

Alternatively, you can specify multiple server addresses on client, and we will select the best to use automatically.

    {
      "server":["my_server_ip1",'my_server_ip2"],
      "server_port":8388,
      "local_address": "127.0.0.1",
      "local_port":1080,
      "password":"foobar"
    }
  1. cd into the directory of config.json.

  2. On your server, run:

    npm install -g shadowsocks-lite
    sslserver
  1. On your client, run:
    npm install -g shadowsocks-lite
    ssllocal
  1. Change the proxy setting in your browser.
    protocol: socks5
    hostname: 127.0.0.1
    port: 1080

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i shadowsocks-lite

    Weekly Downloads

    10

    Version

    1.0.9

    License

    MIT

    Unpacked Size

    36.2 kB

    Total Files

    18

    Last publish

    Collaborators

    • derekchuank