简单nodejs web静态服务器搭建

00services5.js

//引入http模块
var http=require('http');

//fs模块

var fs=require('fs');

//path模块
var path=require('path');  /*nodejs自带的模块*/

//url模块

var url=require('url');

//引入扩展名的方法是在文件里面获取到的。

var mimeModel=require('./model/getmimefromfile.js');

//console.log(mimeModel.getMime('.css'));   //获取文件类型

http.createServer(function(req,res){



	//http://localhost:8001/news.html    /news.html
	//http://localhost:8001/index.html    /index.html

	//css/dmb.bottom.css

	//xxx.json?214214124

	var pathname=url.parse(req.url).pathname;

	console.log(pathname);

	if(pathname=='/'){
		pathname='/index.html'; /*默认加载的首页*/
	}

	//获取文件的后缀名
	var extname=path.extname(pathname);

	if(pathname!='/favicon.ico'){  /*过滤请求favicon.ico*/
		//console.log(pathname);
		//文件操作获取 static下面的index.html

		fs.readFile('static/'+pathname,function(err,data){

			if(err){  /*么有这个文件*/

				console.log('404');

				fs.readFile('static/404.html',function(error,data404){
					if(error){
						console.log(error);
					}
					res.writeHead(404,{"Content-Type":"text/html;charset='utf-8'"});
					res.write(data404);
					res.end(); /*结束响应*/
				})

			}else{ /*返回这个文件*/

				var mime=mimeModel.getMime(fs,extname);  /*获取文件类型*/
				res.writeHead(200,{"Content-Type":""+mime+";charset='utf-8'"});
				res.write(data);
				res.end(); /*结束响应*/
			}
		})

	}

}).listen(8002);




model文件夹下的 getminefromfile.js 方法

exports.getMime=function(fs,extname)
{
    // fs.readFile('./mime.json',function(err,data){  //异步获取格式的方法


    //     if(err)
    //     {
    //         console.log('mime.json文件不存在');
    //         return false;
    //     }
    //   //  console.log();

    //     var Mimes=JSON.parse(data.toString());
    //     //console.log(Mimes[extname]);
    //     return Mimes[extname] || 'text/html';
    // })


    //把读取数据改成同步
    var data = fs.readFileSync('./mime.json');  //readFileSync 将异步读取改为同步读取
    var Mimes=JSON.parse(data.toString());  //转换格式 tostring
    return Mimes[extname] || 'text/html';
    


}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值