Go to file
micooz b0939ac4ed core: fix 100% cpu when sub process fail to start 2018-11-24 21:20:14 +08:00
core core: fix 100% cpu when sub process fail to start 2018-11-24 21:20:14 +08:00
ui ui/package: update deps 2018-05-24 23:04:51 +08:00
.gitignore initial commit 2018-04-04 11:29:45 +08:00
.gitmodules initial commit 2018-04-04 11:29:45 +08:00
CHANGELOG.md core: fix 100% cpu when sub process fail to start 2018-11-24 21:20:14 +08:00
LICENSE initial commit 2018-04-04 11:29:45 +08:00
README.md core: fix 100% cpu when sub process fail to start 2018-11-24 21:20:14 +08:00
screenshot-0.png docs: update README.md 2018-05-14 22:18:59 +08:00
screenshot-1.png core: fix 100% cpu when sub process fail to start 2018-11-24 21:20:14 +08:00

blinksocks-gui

version downloads license %e2%9d%a4

blinksocks 封装的 WEB 图形化界面。

特性

  • 三大平台支持Windows、Linux、macOS
  • 双端图形化界面
  • 单机服务多开
  • 远程服务配置、启动/停止
  • 实时监控图表CPU、内存、上下行速度、网络连接数、网络流量
  • 日志查看和搜索

安装

使用 npm 安装或升级(推荐)

在此之前,请先安装 Node.jsNode.js 自带 npm 包管理器。

Tips: 如果你是在服务端(一般是 Linux上使用可以使用官方提供的安装脚本 https://nodejs.org/en/download/package-manager/#installing-node-js-via-package-manager

然后执行下面的命令安装 blinksocks 和 blinksocks-gui

$ npm install -g blinksocks blinksocks-gui

需要升级时重新执行上面的命令即可。

启动

交互式启动

$ NODE_ENV=production blinksocks-gui

根据提示选择启动类型(客户端或者服务端):

? Please choose run type  - Use arrow-keys. Return to submit.
  Client
   Server

选择一个端口号用于远程访问图形界面:

✔ Please choose run type  Client
? Please choose a port(1 ~ 65535) for web ui:  3000

完成后在浏览器中打开提示链接即可:

✔ Please choose run type  Client
✔ Please choose a port(1 ~ 65535) for web ui: … 3000
info: blinksocks gui client is running at 3000.
info: You can now open blinksocks-gui in browser:

  http://localhost:3000/

一行命令启动

$ blinksocks-gui --client --port 3000

Tips: 第一次启动时,程序会自动创建一个 root 用户,初始密码为 root,在 /landing 页面输入初始密码后登录系统。

修改初始登录密码

转到 /settings 页面或点击左侧 Settings 菜单进入系统配置面板修改相关配置并保存。

开发指引

拉取仓库并初始化

$ git clone https://github.com/blinksocks/blinksocks-gui
$ cd blinksocks-gui
$ git submodule update --init

安装依赖

core 模块安装

$ cd core
$ npm install
$ npm install --no-save blinksocks

ui 模块安装

$ cd ui
$ npm install

启动调试

启动本地 HTTP/WebSocket 服务:

$ cd core && npm run start:client

启动前端开发服务器:

$ cd ui && npm start

根据提示打开链接开始调试。

编译和打包

只需要编译打包前端代码,完成后会自动替换 core/public 里的内容:

$ cd ui && npm run build

发布

只需发布 core/ 里的内容到 npm registry 即可:

$ cd core
$ npm publish

更新日志

CHANGELOG.md

License

Apache License 2.0