# nodeService **Repository Path**: eBlueIce/node-service ## Basic Information - **Project Name**: nodeService - **Description**: No description available - **Primary Language**: NodeJS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-02-19 - **Last Updated**: 2024-02-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # nodeService ## 环境配置 1、安装node(node版本:18.15.0) 2、新建文件夹,例如node-service 3、执行npm init,生成package.json文件 4、安装相关依赖 ` npm install express npm install body-parser npm install cors --save ` 5、在根目录新建index.js文件,输入实例代码 6、启动接口:node index.js 7、通过 http://localhost:3000/* 访问接口