[backend][nodejs] Use express framework instead of http module

This commit is contained in:
koeberlue
2021-04-05 21:40:17 +02:00
parent 6586d07745
commit 148c283a91
2 changed files with 9 additions and 11 deletions

View File

@@ -5,7 +5,7 @@
"main": "lib/app.js",
"scripts": {
"test": "ts-mocha -p tsconfig.json src/**/*.spec.ts",
"start": "tsc && node lib/app.js build:live",
"start": "tsc && node lib/app.js",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/app.ts"
},