# node-web-system **Repository Path**: qiushihua/node-web-system ## Basic Information - **Project Name**: node-web-system - **Description**: 这是一个基于 node.js express mysql 基础项目 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-06-08 - **Last Updated**: 2023-06-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: Nodejs, Express, MySQL ## README ### 安装依赖 ```shell npm i ``` ### 连接 MySQL 数据库 - 在`db/index.js`中配置`MySQL`数据库 - 并创建对应数据库和表 ### 启动 express 服务 - 安装`nodemon`热更新工具 ```shell npm i nodemon -g ``` - 启动命令 ```shell nodemon .\app.js ```