├── .gitignore ├── README.md ├── deprecated.js ├── index.js ├── package.json ├── shadowsocks ├── Shadowsocks.exe ├── Shadowsocks.exe.hash └── zh-Hans │ └── Shadowsocks.resources.dll ├── start-unsafe.bat ├── start.bat └── start.command /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetingyuan/free-ss/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetingyuan/free-ss/HEAD/README.md -------------------------------------------------------------------------------- /deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetingyuan/free-ss/HEAD/deprecated.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetingyuan/free-ss/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetingyuan/free-ss/HEAD/package.json -------------------------------------------------------------------------------- /shadowsocks/Shadowsocks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetingyuan/free-ss/HEAD/shadowsocks/Shadowsocks.exe -------------------------------------------------------------------------------- /shadowsocks/Shadowsocks.exe.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetingyuan/free-ss/HEAD/shadowsocks/Shadowsocks.exe.hash -------------------------------------------------------------------------------- /shadowsocks/zh-Hans/Shadowsocks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetingyuan/free-ss/HEAD/shadowsocks/zh-Hans/Shadowsocks.resources.dll -------------------------------------------------------------------------------- /start-unsafe.bat: -------------------------------------------------------------------------------- 1 | set NODE_TLS_REJECT_UNAUTHORIZED=0 2 | node ./index 3 | -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | node ./index 2 | -------------------------------------------------------------------------------- /start.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovetingyuan/free-ss/HEAD/start.command --------------------------------------------------------------------------------