原生静态资源服务器

// 导入模块
const http = require('http')
const fs = require('fs')
const path = require('path')

// “策略模式”
const obj = {
  ".png": "image/png",
  ".jpg": "image/jpg",
  ".html": "text/html;charset=utf8",
  ".js": "application/javascript;charset=utf8",
  ".css": "text/css;charset=utf8"
}

const server = http.createServer((req, res) => {
  // 如果直接http://localhost:8085 ===> req.url 就是 /,这时,希望它去加载 /index.html
  const url = req.url === '/' ? '/index.html' : req.url

  const filePath = path.join(__dirname, 'public', url)

  fs.readFile(filePath, (err, data) => {

    if (err) {
      res.statusCode = 404
      res.end('not found')
    } else {
      // 获取后缀名
      const extName = path.extname(filePath)
      if (obj[extName]) {
        res.setHeader('content-type', obj[extName])
      }
      res.end(data)
    }
  })
})
// 启动服务
server.listen(8445, function () {
  console.log('启动成功,请在http://localhost:8445....')
})

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值