node.js使用express模块创建web服务器应用

时间:2022-01-31 15:05:10

1.安装express模块

在命令行输入

npm install body-parser --save
npm install express --save

2.创建app.js文件

/*应用程序入口文件*/

/*加载express模块*/
var express = require('express');
/*创建app应用*/
var app = express(); /*首页*/
app.get('/',function (req,res,next) {
res.send("<h1>您好,欢迎光临我的博客!!!</h1>");
}) /*监听http请求*/
app.listen(8099);

3.在浏览器输入localhost:8099

node.js使用express模块创建web服务器应用