This commit is contained in:
2025-07-12 12:45:33 +08:00
parent 8daa71e7c1
commit 8404f4f1cf
5 changed files with 154 additions and 10 deletions

16
package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "hello-world-app",
"version": "1.0.0",
"description": "简单的Node.js Hello World应用",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "node app.js"
},
"keywords": ["hello", "world", "nodejs", "docker"],
"author": "Test User",
"license": "MIT",
"dependencies": {
"express": "^4.18.2"
}
}