Filegogo是一款开源的点对点加密文件传输工具。基于WebRTC编写,遵守MIT开源协议。

运行:

# server 服务器端
make run

# frontend 前台
npm run dev

配置文件:

{
  "wsUrl": "ws://localhost:8033/topic/",
  "iceServers": [
    {
      "urls": "stun:stun.services.mozilla.com",
      "username": "louis@mozilla.com",
      "credential": "webrtcdemo"
    }, {
      "urls": ["stun:stun.example.com", "stun:stun-1.example.com"]
    }
  ]
}

https://github.com/a-wing/filegogo

[repo owner=”a-wing” name=”filegogo”]