短影片開發app,利用資料壓縮加速大檔案傳輸
accept: */* accept-encoding: gzip, deflate, br accept-language: zh-CN,zh;q=0.9
cache-control: max-age=2592000 content-encoding: gzip content-type: application/x-javascript
const fs = require("fs"); const http = require("http"); const util = require("util"); const readFile = util.promisify(fs.readFile); const server = http.createServer(async (req, res) => { res.writeHead(200, { "Content-Type": "text/plain;charset=utf-8", }); const buffer = await readFile(__dirname + "/big-file.txt"); res.write(buffer); res.end(); }); server.listen(3000, () => { console.log("app starting at port 3000"); });
const fs = require("fs"); const zlib = require("zlib"); const http = require("http"); const util = require("util"); const readFile = util.promisify(fs.readFile); const gzip = util.promisify(zlib.gzip); const server = http.createServer(async (req, res) => { res.writeHead(200, { "Content-Type": "text/plain;charset=utf-8", "Content-Encoding": "gzip" }); const buffer = await readFile(__dirname + "/big-file.txt"); const gzipData = await gzip(buffer); res.write(gzipData); res.end(); }); server.listen(3000, () => { console.log("app starting at port 3000"); });
來自 “ ITPUB部落格 ” ,連結:https://blog.itpub.net/69978258/viewspace-3006191/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 有了大檔案傳輸加速功能,不再擔憂傳輸大檔案
- 序列化資料傳輸壓縮
- rsync udr——遠端大檔案傳輸加速
- c# 上傳壓縮包 解壓,遍歷資料夾和檔案C#
- Linux加密壓縮檔案/資料夾Linux加密
- 資料壓縮傳輸與斷點續傳那些事兒斷點
- 檔案壓縮和解壓縮
- 大檔案資料如何做到安全傳輸?
- 大檔案如何傳輸,大檔案的傳輸方式有哪些?
- 使用libzip壓縮檔案和資料夾
- 如何分發大檔案、大檔案傳輸解決方案
- java 壓縮(解壓)檔案或者資料夾工具類Java
- 如何快速傳輸大檔案:4 種大檔案傳輸有效的方法
- Vue開啟gzip壓縮檔案Vue
- openGauss OCK加速資料傳輸
- 短視訊app開發,短視訊動態功能上傳圖片時,規定圖片壓縮的大小APP
- 什麼是極速檔案傳輸,極速檔案傳輸如何進行大檔案傳輸
- .NET 壓縮/解壓檔案
- Linux 檔案壓縮Linux
- gulp壓縮檔案
- Linux中檔案的壓縮和解壓縮Linux
- 鐳速傳輸:如何快速傳輸大檔案?
- 鐳速傳輸流量版:隨時開啟企業大資料加速傳輸超能力大資料
- 檔案傳輸軟體在大資料安全中發揮了強大的作用大資料
- 加速檔案傳輸:檔案和UDP之間的區別UDP
- 如何利用 gulp 壓縮混淆 “上古”時期的專案檔案
- 電腦怎麼壓縮檔案 檔案壓縮方法詳解
- Java實現解壓縮檔案和資料夾Java
- 一對一影片app開發,如何分塊載入大檔案?APP
- 開發短影片APP需要什麼功能APP
- 使用Java API進行tar.gz檔案及資料夾壓縮解壓縮JavaAPI
- android短視訊開發,呼叫相機、相簿,壓縮圖片後上傳Android
- 短影片app開發,短影片系統發展的收益方式是什麼?APP
- 跨國大檔案傳輸需要哪些方面?怎麼實現資料快速傳輸?
- Mac壓縮檔案怎麼加密?BetterZip加密Word壓縮檔案教程Mac加密
- linux檔案壓縮和解壓命令Linux
- 直播導播高畫質影片傳輸中的影片壓縮編碼原理解析
- 短影片原始碼實現流式傳輸,降低處理大檔案時對記憶體的佔用原始碼記憶體