nodejs一个简单的文件服务器的创建方法
程序员文章站
2022-06-02 19:58:55
简单的文件服务器
有时候,我们想读取一些服务器上的文件,但是又不想写太复杂的程序,可以考虑用nodejs,可以很简单的写出一个文件服务器
下面是我写的一个简单的...
简单的文件服务器
有时候,我们想读取一些服务器上的文件,但是又不想写太复杂的程序,可以考虑用nodejs,可以很简单的写出一个文件服务器
下面是我写的一个简单的文件服务器,附带缓存功能,这是github链接,或者直接复制下面的代码运行即可,需要安装mime的依赖
const port = 3004; // 端口号 const http = require('http'); const url = require('url'); const fs = require('fs'); const path = require('path'); const mime = require('mime'); const static_folder = 'public'; // 默认读取public文件夹下的文件 const is_open_cache = true; // 是否开启缓存功能 const cache_time = 10;// 告诉浏览器多少时间内可以不用请求服务器,单位:秒 const server = http.createserver((req, res) => { const obj = url.parse(req.url); // 解析请求的url let pathname = obj.pathname; // 请求的路径 if (pathname === '/') { pathname = './index.html'; } const realpath = path.join(__dirname, static_folder, pathname); // 获取物理路径 // 获取文件基本信息,包括大小,创建时间修改时间等信息 fs.stat(realpath, (err, stats) => { let endfilepath = '', contenttype = ''; if (err || stats.isdirectory()) { // 报错了或者请求的路径是文件夹,则返回404 res.writehead(404, 'not found', { 'content-type': 'text/plain' }); res.write(`the request ${pathname} is not found`); res.end(); } else { let ext = path.extname(realpath).slice(1); // 获取文件拓展名 contenttype = mime.gettype(ext) || 'text/plain'; endfilepath = realpath; if (!is_open_cache) { // 未开启缓存 let raw = fs.createreadstream(endfilepath); res.writehead(200, 'ok'); raw.pipe(res); } else { // 获取文件最后修改时间,并把时间转换成世界时间字符串 let lastmodified = stats.mtime.toutcstring(); const ifmodifiedsince = 'if-modified-since'; // 告诉浏览器在规定的什么时间内可以不用请求服务器,直接使用浏览器缓存,不过貌似没有生效,需要再学习一下为什么 let expires = new date(); expires.settime(expires.gettime() + cache_time * 1000); res.setheader("expires", expires.toutcstring()); res.setheader('cache-control', 'max-age=' + cache_time); if (req.headers[ifmodifiedsince] && lastmodified === req.headers[ifmodifiedsince]) { // 请求头里包含请求ifmodifiedsince且文件没有修改,则返回304 res.writehead(304, 'not modified'); res.end(); } else { // 返回头last-modified为当前请求文件的最后修改时间 res.setheader('last-modified', lastmodified); // 返回文件 let raw = fs.createreadstream(endfilepath); res.writehead(200, 'ok'); raw.pipe(res); } } } }); }); server.listen(port); console.log(`server is running at http://localhost:${port}`)
不过目前还有一点问题,服务器缓存返回304,还有修改文件后,再次请求会返回最新文件这个功能目前没有问题,不过设置的cache-control和expires后,在规定的时间内还是会请求服务器,这个还需要再看一下怎么回事,要是有人了解的话可以告诉我一下,谢谢。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Python数据库小程序
下一篇: 罗永浩的网红营销为什么成功