项目作者: xxf098

项目描述 :
A simple tool for batch test ss/ssr/v2ray/trojan servers.
高级语言: Go
项目地址: git://github.com/xxf098/LiteSpeedTest.git
创建时间: 2020-12-03T05:42:51Z
项目社区:https://github.com/xxf098/LiteSpeedTest

开源协议:GNU General Public License v3.0

下载


LiteSpeedTest

LiteSpeedTest is a simple tool for batch test ss/ssr/v2ray/trojan/clash servers.
Feature

  • 支持ss/ssr/v2ray/trojan/clash订阅链接
  • 支持ss/ssr/v2ray/trojan/clash节点链接
  • 支持ss/ssr/v2ray/trojan/clash订阅或节点文件
  • support ss/ssr/v2ray/trojan/clash subscription url,
  • support ss/ssr/v2ray/trojan/clash profile links
  • support ss/ssr/v2ray/trojan/clash subscription or profile file,

build

Usage

  1. Run as a speed test tool:
  2. # run this command then open http://127.0.0.1:10888/ in your browser to start speed test
  3. ./lite
  4. # start with another port
  5. ./lite -p 10889
  6. # test in command line only mode
  7. ./lite --test https://raw.githubusercontent.com/freefq/free/master/v2
  8. # test in command line only mode with custom config.
  9. ./lite --config config.json --test https://raw.githubusercontent.com/freefq/free/master/v2
  10. # details can find here https://github.com/xxf098/LiteSpeedTest/blob/master/config.json
  11. # all config options:
  12. # "group":"job", // group name
  13. # "speedtestMode":"pingonly", // speedonly pingonly all
  14. # "pingMethod":"googleping", // googleping tcpping
  15. # "sortMethod":"rspeed", // speed rspeed ping rping
  16. # "concurrency":1, // concurrency number
  17. # "testMode":2, // 2: ALLTEST 3: RETEST
  18. # "subscription":"subscription url",
  19. # "timeout":16, // timeout in seconds
  20. # "language":"en", // en cn
  21. # "fontSize":24,
  22. # "unique": true, // remove duplicated value
  23. # "theme":"rainbow",
  24. # "outputMode": 1 // 0: base64 1: pic path 2: no pic 3: json 4: txt
  25. Run as a grpc server:
  26. # start the grpc server
  27. ./lite -grpc -p 10999
  28. # grpc go client example in ./api/rpc/liteclient/client.go
  29. # grpc python client example in ./api/rpc/liteclientpy/client.py
  30. Run as a http/socks5 proxy:
  31. # use default port 8090
  32. ./lite vmess://aHR0cHM6Ly9naXRodWIuY29tL3h4ZjA5OC9MaXRlU3BlZWRUZXN0
  33. ./lite ssr://aHR0cHM6Ly9naXRodWIuY29tL3h4ZjA5OC9MaXRlU3BlZWRUZXN0
  34. # use another port
  35. ./lite -p 8091 vmess://aHR0cHM6Ly9naXRodWIuY29tL3h4ZjA5OC9MaXRlU3BlZWRUZXN0

Build

  1. # require go>=1.18.1, nodejs >= 14
  2. # build frontend
  3. cp $(go env GOROOT)/misc/wasm/wasm_exec.js ./web/gui/wasm_exec.js
  4. npm install --prefix web/gui build
  5. npm run --prefix web/gui build
  6. GOOS=js GOARCH=wasm go get -u ./...
  7. GOOS=js GOARCH=wasm go build -o ./web/gui/dist/main.wasm ./wasm
  8. go build -o lite

Docker

  1. docker build --network=host -t lite:$(git describe --tags --abbrev=0) -f ./docker/Dockerfile ./
  2. docker run -p 10888:10888/tcp lite:$(git describe --tags --abbrev=0)

Credits

Developer

  1. import (
  2. "context"
  3. "fmt"
  4. "time"
  5. "github.com/xxf098/lite-proxy/web"
  6. )
  7. // see more details in ./examples
  8. func testPing() error {
  9. ctx := context.Background()
  10. link := "https://www.example.com/subscription/link"
  11. opts := web.ProfileTestOptions{
  12. GroupName: "Default",
  13. SpeedTestMode: "pingonly", // pingonly speedonly all
  14. PingMethod: "googleping", // googleping
  15. SortMethod: "rspeed", // speed rspeed ping rping
  16. Concurrency: 2,
  17. TestMode: 2,
  18. Subscription: link,
  19. Language: "en", // en cn
  20. FontSize: 24,
  21. Theme: "rainbow",
  22. Unique: true,
  23. Timeout: 10 * time.Second,
  24. OutputMode: 0,
  25. }
  26. nodes, err := web.TestContext(ctx, opts, &web.EmptyMessageWriter{})
  27. if err != nil {
  28. return err
  29. }
  30. // get all ok profile
  31. for _, node := range nodes {
  32. if node.IsOk {
  33. fmt.Println(node.Remarks)
  34. }
  35. }
  36. return nil
  37. }