簡(jiǎn)單的文件服務(wù)器
有時(shí)候,我們想讀取一些服務(wù)器上的文件,但是又不想寫太復(fù)雜的程序,可以考慮用nodejs,可以很簡(jiǎn)單的寫出一個(gè)文件服務(wù)器
下面是我寫的一個(gè)簡(jiǎn)單的文件服務(wù)器,附帶緩存功能,這是github鏈接,或者直接復(fù)制下面的代碼運(yùn)行即可,需要安裝mime的依賴
const port = 3004; // 端口號(hào) const http = require('http'); const url = require('url'); const fs = require('fs'); const path = require('path'); const mime = require('mime'); const STATIC_FOLDER = 'public'; // 默認(rèn)讀取public文件夾下的文件 const IS_OPEN_CACHE = true; // 是否開啟緩存功能 const CACHE_TIME = 10;// 告訴瀏覽器多少時(shí)間內(nèi)可以不用請(qǐng)求服務(wù)器,單位:秒 const server = http.createServer((req, res) => { const obj = url.parse(req.url); // 解析請(qǐng)求的url let pathname = obj.pathname; // 請(qǐng)求的路徑 if (pathname === '/') { pathname = './index.html'; } const realPath = path.join(__dirname, STATIC_FOLDER, pathname); // 獲取物理路徑 // 獲取文件基本信息,包括大小,創(chuàng)建時(shí)間修改時(shí)間等信息 fs.stat(realPath, (err, stats) => { let endFilePath = '', contentType = ''; if (err || stats.isDirectory()) { // 報(bào)錯(cuò)了或者請(qǐng)求的路徑是文件夾,則返回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 { // 獲取文件最后修改時(shí)間,并把時(shí)間轉(zhuǎn)換成世界時(shí)間字符串 let lastModified = stats.mtime.toUTCString(); const ifModifiedSince = 'if-modified-since'; // 告訴瀏覽器在規(guī)定的什么時(shí)間內(nèi)可以不用請(qǐng)求服務(wù)器,直接使用瀏覽器緩存,不過貌似沒有生效,需要再學(xué)習(xí)一下為什么 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]) { // 請(qǐng)求頭里包含請(qǐng)求ifModifiedSince且文件沒有修改,則返回304 res.writeHead(304, 'Not Modified'); res.end(); } else { // 返回頭Last-Modified為當(dāng)前請(qǐng)求文件的最后修改時(shí)間 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}`)
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。