-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
35 lines (30 loc) · 877 Bytes
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
var http = require('http');
var fileSystem = require('fs');
var server = http.createServer(function(req, resp){
var fileName = './index.html';
var contentType = 'text/html';
var path = req.url;
if (path) {
if (path.endsWith(".svg")) {
contentType = 'image/svg+xml';
} else if (path.endsWith(".css")) {
contentType = 'text/css';
}
if (path.endsWith(".svg") || path.endsWith(".css") || path.endsWith(".md") || path.endsWith(".ico")) {
fileName = "." + path;
}
}
console.log("request path:", path, " fileName:", fileName, " contentType:", contentType);
fileSystem.readFile(fileName, function(error, fileContent){
if(error){
resp.writeHead(500, {'Content-Type': 'text/plain'});
resp.end('Error');
}
else{
resp.writeHead(200, {'Content-Type': contentType});
resp.write(fileContent);
resp.end();
}
});
});
server.listen(8080);