-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
60 lines (49 loc) · 1.34 KB
/
main.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
57
58
59
60
// 引入http内置模块
const http = require('http')
// 引入chalk 用于美化后台打印
const chalk = require('chalk')
const path = require('path')
const fs = require('fs')
// 引入基本配置
const conf = {
// 主机名称
hostname: '127.0.0.1',
// 端口号
port: 8080,
// 当前文件夹
root: process.cwd()
}
// 创建一个server 实例
const server = http.createServer((rep, res) => {
// 拿到路径
const filePath = `https://tu.kmvwz.xyz/uploads/images/2021-03-06/`
// 判断是否为文件或者文件夹
fs.stat(filePath, (err, stats) => {
// 设置公共头部信息
res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' })
if (err) {
// 状态码
res.statusCode = 404
// 找不到提示文本
res.end(`${filePath} is 404`)
return
}
if (stats.isFile()) {
// 如果是文件 返回文件内容
res.statusCode = 200
fs.createReadStream(filePath).pipe(res)
} else if (stats.isDirectory()) {
// 如果是文件夹,返回文件列表
fs.readdir(filePath, (err, files) => {
if (err) return
res.statusCode = 200
res.end(files.join(','))
})
}
})
})
// 监听 server 实例
server.listen(conf.port, conf.hostname, () => {
const addr = `https://tu.kmvwz.xyz/uploads/images/2021-03-06/`
console.info(`server startd at ${chalk.green(addr)}`)
})