1.首先 需要新建一个文件 在cmd输入 mkdir 文件名(或者自己创建一个文件名)
2.在cmd中打入 npm init -y
然后生成package.json(包描述文件),
3.安装expess 如下图: npm install --save express(可简写为 npm i -- S express)
4.安装完毕,即可引入express,初次尝试,使用代码如下。注:启动服务器 node 文件名,关闭服务器,在cmd界面按Ctrl +c即可退出
//0 安装 //1 引包 let express = require('express'); //2. 创建你服务器应用程序 // 也就是原来的 http.createServer() // 变化 原来的res.end()变成了res.send() let app = express(); //当服务器收到 get请求 / 的时候,执行回调函数 app.get('/',function(req,res){ res.send(`hello express! it is the first time. good luck `); }); app.get('/about',function(req,res){ res.send(`你好hello express! it is the first time. good luck`); }); app.listen(3000,function(){ console.log('app is running on 3000 port'); });