1、初始化项目
npm init -y
2、在项目根目录创建一个app文件夹,并写一个 index.js
const express =require('express')
const router =express.Router()
const app = new express()
router.get('/',(req,res)=>{
res.send('hellow world!')
})
app.use(router)
app.listen(3000,()=>{
console.log('sever listen at 3000')
})
然后使用 node app命令运行这个项目
这样在localhost:3000就可以访问到hellow world 内容了,我们简单的后端服务器就已经搭建完成了。
3、在node里面加入nodemon热启动
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server":"nodemon app"
},
4、启动服务器
npm run server
就可以了
5、使用postman来测试接口
把我们后端服务器的url接口网址在postman里面send一下,测试正常就是接口没有问题。
6、需要使用mongoDB数据库,需要安装mongoose
cnpm i mongoose -S
7、连接mongoDB
未完待续……