第一步:使用npm init
进行初 始化
mkdir myapp
cd myapp
npm init --yes
第二步:安装express
npm install express //局部安装
npm install -g express //全局安装
第三步:导入express
New-item app.js
# 打开app.js 输入
const express = require('express')
第四步:构建APP实例
const app = express() //返回运行在node服务器上的app实例对象。
第五步:监听服务器端口3000
app.listen(3000,() => {
'服务器已运行在: http://localhost:3000'
})
第6步:配置路由
//get请求 200成功
app.get('/',(req,res) => {
//res.send()//发送 text/plain||text/html
//res.sendFile() //发送文件内容 application/json
res.render()//渲染视图模版
})
//get请求 301转向
app.get('./about-us',(req,res) => {
res.redirect('./about')//重定向到'./about'请求
})
//get请求 404页面未找到 必须放最后
app.use((req,res) => {
res.status(404).render('404')
})