美文网首页
搭建服务器express脚手架

搭建服务器express脚手架

作者: 我那么逗 | 来源:发表于2020-09-22 19:38 被阅读0次

全局安装脚手架

cnpm install express-generator -g

使用ejs模板引擎来创建node项目

express --view=ejs node-fullapi

进入项目

cd node-fullapi

安装包

cnpm install

数据库连接

cnpm install mongoose -S

创建数据库连接

在项目中创建一个model文件夹,在model文件夹中新建一个connect.js文件,文件代码:

localhost后面跟的是数据库名

package.json配置

如果没安装热更新要安装热更新

npm install -g nodemon

将node改为nodemon


在app.js中运行

写一行就行


启动项目

npm start

默认运行:

http://localhost:3000访问页面

改端口,在 /bin/www 文件中

中文文档:

https://www.expressjs.com.cn/

相关文章

网友评论

      本文标题:搭建服务器express脚手架

      本文链接:https://www.haomeiwen.com/subject/emgwyktx.html