This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
config(存放数据库配置)
controllers(存放接口业务逻辑)
models(存放数据库模型)
routes(存放接口路由)
middlewares(存放中间件,暂用不上,先创建)
.env(存放敏感配置,如数据库密码,不提交到 Git)
.env.example(环境变量示例,给团队参考,可提交 Git)
app.js(应用入口,配置中间件和路由)
server.js(服务启动文件,监听端口)
db.js 配置数据库连接(config/db.js)