feat: add initial webserver setup with Express and proxy middleware

This commit is contained in:
2025-10-30 09:16:07 +00:00
parent 2025a0a71f
commit 50b6f4a6e5
2 changed files with 83 additions and 0 deletions

17
webserver/package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "webserver",
"version": "1.0.0",
"description": "",
"main": "webserver.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sebastian Frank",
"license": "MIT",
"dependencies": {
"connect-history-api-fallback": "^1.6.0",
"express": "^4.17.2",
"http-proxy-middleware": "^2.0.2",
"morgan": "^1.10.0"
}
}