The CompressionStream interface of the Compression Streams API is an API for compressing a stream of data.
The CompressionStream interface of the Compression Streams API is an API for compressing a stream of data.
CompressionStream()Creates a new CompressionStream
CompressionStream.readableReturns the ReadableStream instance controlled by this object.
CompressionStream.writableReturns the WritableStream instance controlled by this object.
In this example a stream is compressed using gzip compression.
js
const compressedReadableStream = inputReadableStream.pipeThrough( new CompressionStream("gzip"), );
| Specification |
|---|
| Compression Streams # compression-stream |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
CompressionStream |
80 | 80 | 113 | No | 67 | 16.4 | 80 | 80 | 113 | 57 | 16.4 | 13.0 |
CompressionStream |
80 | 80 | 113 | No | 67 | 16.4 | 80 | 80 | 113 | 57 | 16.4 | 13.0 |
readable |
80 | 80 | 113 | No | 67 | 16.4 | 80 | 80 | 113 | 57 | 16.4 | 13.0 |
writable |
80 | 80 | 113 | No | 67 | 16.4 | 80 | 80 | 113 | 57 | 16.4 | 13.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CompressionStream