Initial commit: Node.js 16 HTTP server template
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 → 100755
hello_world.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "node16-hello-world", | ||
"version": "1.0.0", | ||
"description": "Node.js 16 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": ">=16.0.0" | ||
} | ||
} |
Please register or sign in to comment