cnodejs.org の静的サーバーの例を参照して、キャッシュと圧縮を含む次の Nodejs 静的サーバーの例を作成しました。コードは次のとおりです。
var lastModified = stats.mtime.toUTCString();
var ifModifiedSince = "If-Modified-Since".toLowerCase();
response.setHeader("最終更新日", lastModified);
if (ext.match(config.Expires.fileMatch)) {
var 期限切れ = new Date();
expires.setTime(expires.getTime() config.Expires.maxAge * 1000);
response.setHeader("有効期限",expires.toUTCString());
response.setHeader("キャッシュ制御", "max-age=" config.Expires.maxAge);
}
if (request.headers[ifModifiedSince] && lastModified == request.headers[ifModifiedSince]) {
console.log("从浏览器キャッシュ里取")
response.writeHead(304, "未変更");
応答.end();
} else {
var raw = fs.createReadStream(realPath);
var acceptEncoding = request.headers['accept-encoding'] || "";
var matched = ext.match(config.Compress.match);
if (一致 && 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': 'deflate'});
raw.pipe(zlib.createDeflate()).pipe(response);
} else {
response.writeHead(200, "OK");
raw.pipe(応答);
}
}
}
}
});
}
pathHandle(realPath);
});
サーバー.リッスン(ポート);
console.log("http サーバーはポートで実行されます:" port);
まず、JS ファイルの中にアセットのファイルを作成し、そこに、index.html、demo.js などの、送信される静的ファイルを挿入する必要があります。
実行方法は次のとおりです: コマンド行で上にある JS のファイル名を切り替えてから、ノード JS ファイル名を入力しますデバイス内に http://localhost:3333/ を入力すると、結果が表示されます。
--补上面代码里缺少の 2 つの模倣
mime.js
"css": "text/css",
"gif": "image/gif",
"html": "text/html",
"ico": "image/x-icon",
"jpeg": "画像/jpeg",
"jpg": "image/jpeg",
"js": "text/javascript",
"json": "application/json",
"pdf": "アプリケーション/pdf",
"png": "image/png",
"svg": "画像/svg xml",
"swf": "application/x-shockwave-flash",
"tiff": "画像/tiff",
"txt": "テキスト/プレーン",
"wav": "audio/x-wav",
"wma": "audio/x-ms-wma",
"wmv": "video/x-ms-wmv",
"xml": "text/xml"
};
config.js
exports.Compress = {
一致: /css|js|html/ig
};
exports.Welcome = {
ファイル: "index.html"
};