Skip to content

galaxy-s10/billd-desk-admin

Repository files navigation

Billd-Desk logo

BilldDesk

基于WebRTC + Vue3 + Electron + Nodejs搭建的远程桌面

stars forks

version License language

简介

BilldDesk远程桌面控制,目前实现了类似ToDesk、向日葵等远程桌面的功能。

生态

名称 仓库 star & fork 线上地址/下载地址
远程桌面网页/客户端 billd-desk github github https://desk.hsslive.cn
远程桌面后台 billd-desk-admin github github https://desk-admin.hsslive.cn
远程桌面移动端 billd-desk-flutter github github TODO
远程桌面服务端 billd-desk-server github github https://desk-api.hsslive.cn

功能

  • Web端控制桌面客户端
  • 桌面客户端控制桌面客户端
  • Web端控制Web端(仅观看)
  • 桌面客户端控制Web端(仅观看)
  • 连接鉴权
  • 支持Macos系统
  • 支持Windows系统
  • 支持Linux系统(未实际验证)
  • 文件传输
  • 开机自启
  • [] 锁屏保活
  • 移动客户端
  • 后台管理

预览

控制端发起远程控制

https://github.com/user-attachments/assets/8e760673-49b5-48b1-b15b-29963880fa64

https://github.com/user-attachments/assets/beb7d43c-5660-4185-96c8-2f2761a11413

控制端正在控制被控端

https://github.com/user-attachments/assets/4cc167f5-70ac-47bc-a226-564a2f69c2f1

被控端

https://github.com/user-attachments/assets/b1482a29-ca11-4ed8-b78e-49815a556bfe

文件传输

https://github.com/user-attachments/assets/fc9d5f94-e716-46ce-b17d-a39c394521a3

接口文档

线上接口:https://desk-api.hsslive.cn

接口文档:todo

本地启动

  • 安装依赖(建议使用 node 版本:v18.19.0)
pnpm i

更新 billd 相关依赖:

pnpm i billd-deploy@latest billd-utils@latest billd-scss@latest billd-html-webpack-plugin@latest
  • 运行
npm run dev
  • 打包windows、macos、linux包
npm run build
  • 打包windows包
npm run build:win
  • 打包macos包
npm run build:mac
  • 打包linux包
npm run build:linux

性能测试

主要测试各个端之间远程时候的延迟。

TODO

视频教程

b站合集:BilldDesk开源远程桌面控制

常见问题

应用图标缓存问题

如果应用图标不更新,可以尝试替换一个图标图片再打包,或者你不希望换图标图片的话,可以将现在的图标图片拿去压缩一下,亲测也能解决问题。

rebuild

npm config set registry https://registry.npmmirror.com
./node_modules/.bin/electron-rebuild

rebuild时cpu-feature报错

直接删了node_modules的cpu-feature

pnpm安装electron时卡在postinstall

  1. 直接ctrl+c退出npm安装
  2. 进入node_modules/electron/install.js,将
    downloadArtifact({
      version,
      artifactName: 'electron',
      force: process.env.force_no_cache === 'true',
      cacheRoot: process.env.electron_config_cache,
      checksums:
        (process.env.electron_use_remote_checksums ??
        process.env.npm_config_electron_use_remote_checksums)
          ? undefined
          : require('./checksums.json'),
      platform,
      arch,
    })
      .then(extractFile)
      .catch((err) => {
        console.error(err.stack);
        process.exit(1);
      });
    修改为:
    downloadArtifact({
      version,
      artifactName: 'electron',
      force: process.env.force_no_cache === 'true',
      cacheRoot: process.env.electron_config_cache,
      checksums:
        (process.env.electron_use_remote_checksums ??
        process.env.npm_config_electron_use_remote_checksums)
          ? undefined
          : require('./checksums.json'),
      platform,
      arch,
      mirrorOptions: {
        mirror: 'https://npmmirror.com/mirrors/electron/',
        platform,
        arch,
      },
    })
      .then(extractFile)
      .catch((err) => {
        console.error(err.stack);
        process.exit(1);
      });
  3. 在node_modules/electron目录下执行node install

兼容性

  • Windows
  • Macos
  • Linux

billd-desk-pro

简介:https://github.com/billd-project/

About

基于Vue3 + Vite6 + NaiveUI搭建的远程桌面后台

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published