-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode.js
More file actions
47 lines (43 loc) · 1.44 KB
/
node.js
File metadata and controls
47 lines (43 loc) · 1.44 KB
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
var PORT = 3000
var http = require('http')
var url = require('url')
var fs = require('fs')
var mime = require('./mime').types
var path = require('path')
var server = http.createServer(function (request, response) {
var pathname = url.parse(request.url).pathname
// add default pathname -- index.html
if (pathname.charAt(pathname.length - 1) == '/') {
//如果访问目录
pathname += 'index.html' //指定为默认网页
}
var realPath = path.join('assets', pathname)
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.end()
} else {
fs.readFile(realPath, 'binary', function (err, file) {
if (err) {
response.writeHead(500, {
'Content-Type': 'text/plain',
})
response.end()
} else {
var contentType = mime[ext] || 'text/plain'
response.writeHead(200, {
'Content-Type': contentType,
})
response.write(file, 'binary')
response.end()
}
})
}
})
})
server.listen(PORT)
console.log('server running at port: ' + PORT + '.')