64 lines
1.9 KiB
JavaScript
64 lines
1.9 KiB
JavaScript
var PORT = 12346;
|
|
|
|
var http = require('http');
|
|
var url = require('url');
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
const mime = {
|
|
"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"
|
|
};
|
|
|
|
var server = http.createServer(function (request, response) {
|
|
var realPath = url.parse(request.url).pathname.trim();
|
|
if (!realPath || realPath == "/") {
|
|
realPath = "/index.html";
|
|
}
|
|
realPath = path.join(__dirname, realPath);
|
|
console.log(realPath);
|
|
var ext = path.extname(realPath);
|
|
ext = ext ? ext.slice(1) : 'unknown';
|
|
fs.exists(realPath, function (exists) {
|
|
if (!exists) {
|
|
response.writeHead(404, {
|
|
'Content-Type': 'text/plain'
|
|
});
|
|
|
|
response.write(`无法找到文件${realPath}`);
|
|
response.end();
|
|
} else {
|
|
fs.readFile(realPath, "binary", function (err, file) {
|
|
if (err) {
|
|
response.writeHead(500, {
|
|
'Content-Type': 'text/plain'
|
|
});
|
|
response.end(err);
|
|
} else {
|
|
var contentType = mime[ext] || "text/plain";
|
|
response.writeHead(200, {
|
|
'Content-Type': contentType
|
|
});
|
|
response.write(file, "binary");
|
|
response.end();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|
|
server.listen(PORT); |