# nodejs-helloworld **Repository Path**: lucas2530/nodejs-helloworld ## Basic Information - **Project Name**: nodejs-helloworld - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-07-24 - **Last Updated**: 2026-07-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # README ## 构建和运行镜像 ```shell docker build -t nodejs-helloworld . docker run -p 3000:3000 nodejs-helloworld ``` ## 测试 ```shell # 打开新的命令行窗口 curl http://localhost:3000 # 返回Hello, World! ```