參考cnodejs.org上面的靜態伺服器例子,寫了下面的一個nodejs靜態伺服器例子,裡麵包含cache,壓縮,貼程式碼如下:
所中 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);
;
;
;
‧中經(request.headers[ifModifiedSince] && lastModified == request.headers[ifModifiedSince]) {
console.log("從瀏覽器快取取用")
response.writeHead(304, "未修正");
回應.end();
} 其他 {
var raw = fs.createReadStream(realPath);
var AcceptEncoding = request.headers['accept-encoding'] || 「」;
request.headers['accept-encoding'] || 「」;
if (matched &&acceptEncoding.match(/bgzipb/)) {
response.writeHead(200, "Ok", {'Content-Encoding': 'gzip');
raw.pipe(zlib.createGzip()).pipe(response);
;
;
} else if (配 && AcceptEncoding.match(/bdeflateb/)) {
response.writeHead(200, "Ok", {'Content-Encoding': 'def]);
raw.pipe(zlib.createDeflate()).pipe(response);
;
;
} 其他 {
response.writeHead(200, "良好的");
raw.pipe(反應);
}
}
}
}
}
路徑句柄(realPath);
});
server.listen(埠);
console.log("http 伺服器運行在連接埠:" 連接埠);
首先需要在JS檔案裡建立一個assets的資料夾,裡面放入你要瀏覽的靜態文件,例如,index.html,demo.js等。
運作方式為:在命令列切換到上面的JS的檔案目錄,然後輸入node JS檔名
瀏覽器內輸入http://localhost:3333/就會看到效果。
--補上面程式碼裡缺少的兩個模組
mime.js
程式碼如下:
"css": "文字/css",
"gif": "影像/gif",
"html": "text/html",
"ico": "影像/x-圖示",
"jpeg": "圖片/jpeg",
"jpg": "圖片/jpeg",
"js": "文字/javascript",
"json": "application/json",
"pdf": "應用程式/pdf",
"png": "影像/png",
"svg": "影像/svg xml",
"swf": "application/x-shockwave-flash",
"tiff": "影像/tiff",
"txt": "文字/純文字",
"wav": "音訊/x-wav",
"wma": "音訊/x-ms-wma",
"wmv": "video/x-ms-wmv",
"xml": "文字/xml"
};
config.js
exports.compress = {
配對:/css|js|html/ig
};
出口。歡迎= {
文件:「index.html」
};