mirror of
https://github.com/UNITRONIX/BetterDesk.git
synced 2026-09-10 09:35:39 +00:00
32e29723e4
Introduce a new Node.js-based web console (Express + EJS + better-sqlite3) under web-nodejs/ and add installer support to choose between Node.js and the legacy Flask console. Update interactive ALL-IN-ONE installers (betterdesk.sh, betterdesk.ps1) with flags/options for --nodejs/--flask, automatic Node.js installation, migration logic, enhanced service handling and diagnostics. Bump VERSION to 2.2.0 and update README and project docs (.github/copilot-instructions.md) to reflect the new console, usage examples, and Docker/docs changes. Many new web-nodejs files and supporting middleware/services/routes/views/static assets were added to support the new console.
36 lines
815 B
JSON
36 lines
815 B
JSON
{
|
|
"name": "betterdesk-console",
|
|
"version": "2.0.0",
|
|
"description": "BetterDesk Console - Professional Web Management Panel for RustDesk Server",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "node --watch server.js"
|
|
},
|
|
"keywords": [
|
|
"rustdesk",
|
|
"betterdesk",
|
|
"remote-desktop",
|
|
"management-console"
|
|
],
|
|
"author": "UNITRONIX",
|
|
"license": "AGPL-3.0",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"better-sqlite3": "^11.3.0",
|
|
"ejs": "^3.1.10",
|
|
"express-session": "^1.18.0",
|
|
"express-rate-limit": "^7.4.1",
|
|
"bcrypt": "^5.1.1",
|
|
"axios": "^1.7.7",
|
|
"helmet": "^7.1.0",
|
|
"cookie-parser": "^1.4.6",
|
|
"csrf-csrf": "^3.0.6",
|
|
"multer": "^1.4.5-lts.1",
|
|
"qrcode": "^1.5.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|