Fix live stream buffering and add websocket status

This commit is contained in:
Hermes Agent
2026-05-21 00:48:55 +02:00
parent fda46887ed
commit 17bf8d4e3a
6 changed files with 262 additions and 13 deletions

View File

@@ -7,12 +7,13 @@
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"check": "node --check src/server.js && node --check src/filestash.js && node --check src/effects.js && node --check src/homeassistant.js && node --check src/streamMixer.js && node --check src/routes.js"
"check": "node --check src/server.js && node --check src/filestash.js && node --check src/effects.js && node --check src/homeassistant.js && node --check src/streamMixer.js && node --check src/routes.js && node --check src/wsHub.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"express": "^4.19.2"
"express": "^4.19.2",
"ws": "^8.18.0"
}
}