# step1_express **Repository Path**: Bean_Man/step1_express ## Basic Information - **Project Name**: step1_express - **Description**: 硬件在环项目第一步软件 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-09-26 - **Last Updated**: 2024-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 1 运行项目 ### 安装 nvm `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash`或 ``` git clone https://gitee.com/mirrors/nvm cd nvm bash install.sh ``` ### 安装并设置 node ``` nvm install v16 nvm alias default 16 # 或者nvm use 16 ``` ### 安装依赖 `npm install` ### 运行 `npm run start` ## 2 问题处理 ### 端口被占用 ``` lsof -i:3000 kill -9 PID号 ```