express【入门 一】

const express = require("express");
var server = express();
server.listen(8080);

express【入门 一】_第1张图片
输入 localhost:8080/user.html
返回 Cannot GET/user.html

如果不引入这个模块

const http = require("http");
var server = http.createServer(function(req,res){
	res.write("xxx");
	res.end();
});
server.listen(8080,function(){
	console.log("server is running")
});

express【入门 一】_第2张图片

经过对比,发现express是已经包装了 http协议的小框架。

你可能感兴趣的:(express)