cnodejs.org의 정적 서버 예제를 참조하여 캐시와 압축이 포함된 다음 nodejs 정적 서버 예제를 작성했습니다.
var ifModifiedSince = "If-Modified-Since".toLowerCase();
response.setHeader("Last-Modified", lastModified);
var 만료 = 새 날짜();
만료.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, "수정되지 않음");
response.end();
} 그 밖의 {
var raw = fs.createReadStream(realPath);
var acceptEncoding = request.headers['accept-encoding'] || "";
var match = ext.match(config.Compress.match);
if (일치 && acceptEncoding.match(/bgzipb/)) {
response.writeHead(200, "Ok", {'Content-Encoding': 'gzip'});
raw.pipe(zlib.createGzip()).pipe(응답);
} else if (일치 && acceptEncoding.match(/bdeflateb/)) {
response.writeHead(200, "Ok", {'Content-Encoding': 'deflate'});
raw.pipe(zlib.createDeflate()).pipe(응답);
} 그 밖의 {
response.writeHead(200, "확인");
raw.pipe(응답);
}
}
}
}
});
}
pathHandle(실제 경로);
});
server.listen(포트);
console.log("http 서버 실행 포트:" port);
浏览器内输入http://localhost:3333/就会看到效果。
--상상상면의 현대적인 两个模块
mime.js
"css": "텍스트/css",
"gif": "이미지/gif",
"html": "텍스트/html",
"ico": "이미지/x-아이콘",
"jpeg": "이미지/jpeg",
"jpg": "이미지/jpeg",
"js": "텍스트/자바스크립트",
"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": "동영상/x-ms-wmv",
"xml": "텍스트/xml"
};
config.js
exports.Compress = {
일치: /css|js|html/ig
};
exports.Welcome = {
파일: "index.html"
};