一、创建package.json文件
npm init -y
二、创建index.js文件
三、安装插件
npm install express
npm install cors
四、在index.js引入express
const express = require('express');
const cors = require('cors');
const app = express()
app.use(cors()) // 解决在前端调接口时出现的跨域问题
app.get("/",(req,res)=>{
res.send("hello word")
})
app.post("/submit", (req, res) => {
res.send({
msg: "hello word"
})
})
const PORT = 8080
app.listen(PORT, () => {
console.log("服务器正在运行http://localhost:" + PORT)
});
接口请求测试可在postman中进行测试
五、启动nodejs环境
在package.json中配置启动路径
"scripts": {
"dev": "node index.js", //配置的启动路径 启动命令:npm run dev
"test": "echo \"Error: no test specified\" && exit 1"
},