-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
56 lines (45 loc) · 1.59 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// 載入 http 的模組
var http = require('http');
// 引用 File System 模組
var fs = require('fs');
// 設定 port 預設為 1337,若系統環境有設定則以系統環境設定為主
var port = process.env.PORT || 1337;
var url = require('url');
var path = require('path');
var file_content;
var webPath = 'public';
var server = http.createServer(function(req, res) {
// req 是 request 本地端請求的訊息
// res 是 response 主機回傳到本地端的訊息
// 解析使用者要求的路徑名稱
let url_path = url.parse(req.url);
console.log('path:' + url_path);
let pathname = url_path.pathname;
console.log('pathname:' + pathname);
// 判斷pathname是否為預設路徑
if (pathname === "/" || pathname === "/index.htm") {
pathname = 'index.html';
}
// __dirname 是程式的路徑
// webPath 是公開的資料夾
// pathname 是使用者要求的路徑名稱
var filePath = path.join(__dirname, webPath, pathname);
console.log('filePath:' + filePath);
// 讀取檔案
fs.readFile(filePath, 'utf8', function(err, content) {
if (err) {
console.log('Failed to read');
// 若檔案讀取錯誤,回傳 404
res.writeHead(404, { 'Content-Type': 'text/html' });
res.end();
return;
}
// 將檔案內容傳給瀏覽器
//res.writeHead(200, { 'Content-Type': 'text/' });
res.write(content);
res.end();
})
});
// 啟動並等待連接
server.listen(port);
console.log('Server running at http://127.0.0.1:/' + port);