Initial commit: Node.js 18 Hello World HTTP Server template
- 基于Node.js 18的HTTP服务器模板 - 支持环境变量配置端口 - 包含完整的Makefile自动化脚本 - 支持Docker容器化部署 - 包含VSCode调试配置 - 支持Eazy平台部署配置
parents
Showing
.eazy
0 → 100644
.gitignore
0 → 100644
.resource/resource_dev.json
0 → 100644
.vscode/extensions.json
0 → 100644
.vscode/launch.json
0 → 100644
Dockerfile
0 → 100644
Makefile
0 → 100644
README.md
0 → 100644
docker-entrypoint.sh
0 → 100644
hello_world.js
0 → 100644
package-lock.json
0 → 100644
package.json
0 → 100644
{ | |||
"name": "node18-hello-world", | |||
"version": "1.0.0", | |||
"description": "Node.js 18 HTTP 服务器示例", | |||
"main": "hello_world.js", | |||
"scripts": { | |||
"start": "node hello_world.js", | |||
"dev": "node hello_world.js", | |||
"test": "echo \"Error: no test specified\" && exit 1" | |||
}, | |||
"keywords": [ | |||
"nodejs", | |||
"http", | |||
"server", | |||
"hello-world" | |||
], | |||
"author": "", | |||
"license": "MIT", | |||
"engines": { | |||
"node": ">=18.0.0" | |||
} | |||
} |
Please register or sign in to comment