Compression Streams API 可用於以 gzip 或延遲 (或延遲原始格式) 格式壓縮及解壓縮資料串流。
JavaScript 應用程式使用 Compression Streams API 內建的壓縮功能,不需要包含壓縮程式庫,就能縮小應用程式的下載大小。所有瀏覽器現在都支援這個實用的 API。
壓縮資料
下列程式碼片段說明如何壓縮資料:
const readableStream = await fetch('lorem.txt').then(
(response) => response.body
);
const compressedReadableStream = readableStream.pipeThrough(
new CompressionStream('gzip')
);
解壓縮資料
如要解壓縮,請透過解壓縮串流管道輸出壓縮檔。
const decompressedReadableStream = compressedReadableStream.pipeThrough(
new DecompressionStream('gzip')
);