Go to file
2017-10-09 13:39:49 +08:00
.github add ISSUE_TEMPLATE.md 2017-08-22 20:18:34 +08:00
benchmark benchmark: add 2017-10-09.txt 2017-10-09 13:39:49 +08:00
bin benchmark: rank by recv bitrate 2017-10-08 12:13:15 +08:00
build build: update blinksocks.js 2017-09-21 09:33:28 +08:00
deploy ci,deploy: use Node.js v6.11.3 2017-09-20 13:51:48 +08:00
docs benchmark: add 2017-10-09.txt 2017-10-09 13:39:49 +08:00
lib lib: re-compile 2017-09-21 09:33:02 +08:00
pkg package,pkg: integrate pkg, add postpkg.js 2017-08-09 14:56:54 +08:00
src transports: check websocket writable before send 2017-10-09 12:56:43 +08:00
test test: update tests and snapshots 2017-09-20 13:34:03 +08:00
.babelrc chore(lib): compile to higher node version 2017-04-14 10:29:48 +08:00
.dockerignore feat(deploy): add Docker stuff 2016-12-31 23:03:46 +08:00
.eslintrc chore(eslint): turn off no-undef and max-len check rules 2017-02-20 22:58:43 +08:00
.gitignore ci: fix 2017-09-14 17:47:36 +08:00
.travis.yml ci,deploy: use Node.js v6.11.3 2017-09-20 13:51:48 +08:00
AUTHORS chore(): add AUTHORS and CHANGELOG.md 2017-03-18 15:54:16 +08:00
CHANGELOG.md changelog: update 2017-09-21 09:34:02 +08:00
LICENSE *: fix mode 2017-08-31 18:01:28 +08:00
package.json package: upgrade node runtime to v8.6.0 for binaries 2017-10-07 15:37:53 +08:00
README.md docs: update 2017-09-26 11:09:54 +08:00
webpack.config.js package: replace babili-webpack-plugin to babel-minify-webpack-plugin 2017-09-02 11:20:01 +08:00
yarn.lock package: update deps 2017-10-07 15:36:14 +08:00

blinksocks

version downloads license dependencies devDependencies

Travis Coverage %e2%9d%a4

A framework for building composable proxy protocol stack.

Features

  • Cross-platform: running on Linux, Windows and macOS.
  • Simple proxy interface for Socks5/Socks4/Socks4a and HTTP.
  • Transmit data over raw TCP, real TLS or real WebSocket.
  • A variety of customizable protocols and functional middlewares: using presets.
  • Easy and powerful Access Control(ACL) and Traffic Control(TC): auto ban, speed(upload/download) limiter.
  • Portable/Executable versions available: download here.
  • "Out of the box" distribution and deployment.
  • Compatible with shadowsocks (partially).
  • Compatible with v2ray vmess (partially).

Getting Started

Requirements

blinksocks is built on top of Node.js, if you want to use it in an ordinary way or do some hacking, please install Node.js(v6.x and above) on your operating system.

Install or Upgrade

You can get the latest blinksocks via package manager yarn or npm.

NOTE: Node.js comes with npm installed so you don't have to install npm individually.

latest stable version

$ npm install -g blinksocks

developing version

$ npm install -g git+https://github.com/blinksocks/blinksocks.git
$ npm install -g git+https://github.com/blinksocks/blinksocks.git#v2.5.5

Without yarn or npm?

If you hate to install and want to get a even more portable version, we have all in one script:

the latest build(unstable)

$ wget https://raw.githubusercontent.com/blinksocks/blinksocks/master/build/blinksocks.js

previous build(with tag in url, stable)

$ wget https://raw.githubusercontent.com/blinksocks/blinksocks/v2.5.1/build/blinksocks.js

Run blinksocks

npm version(require Node.js)

$ blinksocks -c blinksocks.client.json

portable version(require Node.js)

$ node blinksocks.js -c blinksocks.client.json

executable version(Node.js, not GUI)

$ ./blinksocks --help    // Linux and macOS
$ blinksocks.exe --help  // Windows

You can download precompiled executables for different platforms and launch it directly without having Node.js installed.

For configuring blinksocks, please refer to Configuration.

GUI ready

For desktop use, you can download official blinksocks-desktop, a cross-platform GUI for blinksocks.

Documents

For Users

  1. Usage
  2. Configuration
  3. Presets

For Developers

  1. Steps
  2. Principle
  3. Architecture
  4. Benchmark

Contributors

See authors.

License

Apache License 2.0