Nodejs实现的一个静态服务器实例


Posted in NodeJs onDecember 06, 2014

参考cnodejs.org上面的静态服务器例子,写了下面的一个nodejs静态服务器例子,里面包含cache,压缩,贴代码如下:

/**

 * 静态文件服务器测试例子

 * User: xuwm

 * Date: 13-5-17

 * Time: 上午8:38

 * To change this template use File | Settings | File Templates.

 */

var port=3333;

var http = require("http");

var url = require("url");

var fs = require("fs");

var path = require("path");

var mime = require("./mime").types;

var config = require("./config");

var zlib = require("zlib");

//创建http服务端

var server=http.createServer(function(request,response){

    var obj= url.parse(request.url);

    response.setHeader("Server","Node/V8");

    console.log(obj);

    var pathname=obj.pathname;

    if(pathname.slice(-1)==="/"){

        pathname=pathname+config.Welcome.file;   //默认取当前默认下的index.html

    }

    var realPath = path.join("assets", path.normalize(pathname.replace(/\.\./g, "")));

    console.log(realPath) ;

    var pathHandle=function(realPath){

    //用fs.stat方法获取文件

        fs.stat(realPath,function(err,stats){

            if(err){

                response.writeHead(404,"not found",{'Content-Type':'text/plain'});

                response.write("the request "+realPath+" is not found");

                response.end();

            }else{

                if(stats.isDirectory()){

                }else{

                    var ext = path.extname(realPath);

                    ext = ext ? ext.slice(1) : 'unknown';

                    var contentType = mime[ext] || "text/plain";

                    response.setHeader("Content-Type", contentType);
                    var lastModified = stats.mtime.toUTCString();

                    var ifModifiedSince = "If-Modified-Since".toLowerCase();

                    response.setHeader("Last-Modified", lastModified);
                    if (ext.match(config.Expires.fileMatch)) {

                        var expires = new Date();

                        expires.setTime(expires.getTime() + config.Expires.maxAge * 1000);

                        response.setHeader("Expires", expires.toUTCString());

                        response.setHeader("Cache-Control", "max-age=" + config.Expires.maxAge);

                    }
                    if (request.headers[ifModifiedSince] && lastModified == request.headers[ifModifiedSince]) {

                        console.log("从浏览器cache里取")

                        response.writeHead(304, "Not Modified");

                        response.end();

                    } else {

                        var raw = fs.createReadStream(realPath);

                        var acceptEncoding = request.headers['accept-encoding'] || "";

                        var matched = ext.match(config.Compress.match);
                        if (matched && acceptEncoding.match(/\bgzip\b/)) {

                            response.writeHead(200, "Ok", {'Content-Encoding': 'gzip'});

                            raw.pipe(zlib.createGzip()).pipe(response);

                        } else if (matched && acceptEncoding.match(/\bdeflate\b/)) {

                            response.writeHead(200, "Ok", {'Content-Encoding': 'deflate'});

                            raw.pipe(zlib.createDeflate()).pipe(response);

                        } else {

                            response.writeHead(200, "Ok");

                            raw.pipe(response);

                        }

                    }

                }

            }

        });
    }

    pathHandle(realPath);

});

server.listen(port);

console.log("http server run in port:"+port);

首先需要在JS文件里创建一个assets的文件夹,里面放入你要浏览的静态文件,比如,index.html,demo.js等。

运行方式为:在命令行里切换到上面的JS的文件目录,然后输入 node JS文件名

浏览器内输入http://localhost:3333/就会看到效果。

--补上上面代码里缺少的两个模块

mime.js

exports.types = {
  "css": "text/css",
  "gif": "image/gif",
  "html": "text/html",
  "ico": "image/x-icon",
  "jpeg": "image/jpeg",
  "jpg": "image/jpeg",
  "js": "text/javascript",
  "json": "application/json",
  "pdf": "application/pdf",
  "png": "image/png",
  "svg": "image/svg+xml",
  "swf": "application/x-shockwave-flash",
  "tiff": "image/tiff",
  "txt": "text/plain",
  "wav": "audio/x-wav",
  "wma": "audio/x-ms-wma",
  "wmv": "video/x-ms-wmv",
  "xml": "text/xml"

};

config.js

exports.Expires = {

    fileMatch: /^(gif|png|jpg|js|css)$/ig,

    maxAge: 60 * 60 * 24 * 365

};
exports.Compress = {

    match: /css|js|html/ig

};
exports.Welcome = {

    file: "index.html"

};
NodeJs 相关文章推荐
用nodejs写的一个简单项目打包工具
May 11 NodeJs
初始Nodejs
Nov 08 NodeJs
轻松创建nodejs服务器(8):非阻塞是如何实现的
Dec 18 NodeJs
详解Nodejs的timers模块
Dec 22 NodeJs
NodeJS实现图片上传代码(Express)
Jun 30 NodeJs
Nodejs调用WebService的示例代码
Sep 29 NodeJs
nodejs实现的连接MySQL数据库功能示例
Jan 25 NodeJs
nodejs+express搭建多人聊天室步骤
Feb 12 NodeJs
nodejs+mongodb aggregate级联查询操作示例
Mar 17 NodeJs
nodejs微信开发之自动回复的实现
Mar 17 NodeJs
nodejs一个简单的文件服务器的创建方法
Sep 13 NodeJs
NodeJs crypto加密制作token的实现代码
Nov 15 NodeJs
nodejs中简单实现Javascript Promise机制的实例
Dec 06 #NodeJs
nodejs实现的一个简单聊天室功能分享
Dec 06 #NodeJs
详谈nodejs异步编程
Dec 04 #NodeJs
nodejs下打包模块archiver详解
Dec 03 #NodeJs
nodejs中转换URL字符串与查询字符串详解
Nov 26 #NodeJs
nodejs教程之制作一个简单的文章发布系统
Nov 21 #NodeJs
nodejs教程之环境安装及运行
Nov 21 #NodeJs
You might like
php visitFile()遍历指定文件夹函数
2010/08/21 PHP
php中echo()和print()、require()和include()等易混淆函数的区别
2012/02/22 PHP
PHP5中实现多态的两种方法实例分享
2014/04/21 PHP
php字符串按照单词进行反转的方法
2015/03/14 PHP
PHP编程实现计算抽奖概率算法完整实例
2017/08/09 PHP
关于JS管理作用域的问题
2013/04/10 Javascript
JQuery 操作/获取table具体代码
2013/06/13 Javascript
Get中文乱码IE浏览器Get中文乱码解决方案
2013/12/26 Javascript
jquery.form.js用法之清空form的方法
2014/03/07 Javascript
QQ空间顶部折页撕开效果示例代码
2014/06/15 Javascript
谈谈基于iframe、FormData、FileReader三种无刷新上传文件的方法
2015/12/03 Javascript
AngularJS中使用HTML5手机摄像头拍照
2016/02/22 Javascript
移动端点击图片放大特效PhotoSwipe.js插件实现
2016/08/25 Javascript
bootstrap——bootstrapTable实现隐藏列的示例
2017/01/14 Javascript
JS计算距当前时间的时间差实例
2017/12/29 Javascript
vue组件表单数据回显验证及提交的实例代码
2018/08/30 Javascript
解决removeEventListener 无法清除监听的问题
2020/10/30 Javascript
[02:48]DOTA2超级联赛专访海涛:你们的选择没有错
2013/06/07 DOTA
跨平台python异步回调机制实现和使用方法
2013/11/26 Python
python sort、sorted高级排序技巧
2014/11/21 Python
在类Unix系统上开始Python3编程入门
2015/08/20 Python
python 实现自动远程登陆scp文件实例代码
2017/03/13 Python
Python 编程速成(推荐)
2019/04/15 Python
解决python彩色螺旋线绘制引发的问题
2019/11/23 Python
Python关于反射的实例代码分享
2020/02/20 Python
python 瀑布线指标编写实例
2020/06/03 Python
利用PyQt5+Matplotlib 绘制静态/动态图的实现代码
2020/07/13 Python
requests在python中发送请求的实例讲解
2021/02/17 Python
关于HTML5的安全问题开发人员需要牢记的
2012/06/21 HTML / CSS
Lands’ End英国官方网站:高质量男女服装
2017/10/07 全球购物
英国现代绅士品牌:Hackett
2017/12/17 全球购物
安踏广告词改编版
2014/03/21 职场文书
开展批评与自我批评心得体会
2014/10/17 职场文书
工作作风建设心得体会
2014/10/22 职场文书
股权转让协议书
2014/12/07 职场文书
CSS3实现的3D隧道效果
2021/04/27 HTML / CSS