Windows下快速搭建NodeJS本地服务器
2021-03-31 23:25
var http = require(‘http‘);
var fs = require(‘fs‘);//引入文件读取模块
var documentRoot = ‘I:/WebServer‘;
//需要访问的文件的存放目录
var server= http.createServer(function(req,res){
var url = req.url;
//客户端输入的url,例如如果输入localhost:8888/index.html
//那么这里的url == /index.html
var file = documentRoot + url;
console.log(url);
fs.readFile( file , function(err,data){
/*
err为文件路径
data为回调函数
回调函数的一参为读取错误返回的信息,返回空就没有错误
data为读取成功返回的文本内容
*/
if(err){
res.writeHeader(404,{
‘content-type‘ : ‘text/html;charset="utf-8"‘
});
res.write(‘
404错误
你要找的页面不存在
‘);res.end();
}else{
res.writeHeader(200,{
‘content-type‘ : ‘text/html;charset="utf-8"‘
});
res.write(data);//将index.html显示在客户端
res.end();
}
});
}).listen(8888);
console.log(‘服务器开启成功‘);
文章标题:Windows下快速搭建NodeJS本地服务器
文章链接:http://soscw.com/index.php/essay/70664.html