Node.js zlib.createUnzip() Method
The zlib.createUnzip() method is an inbuilt application programming interface of the Zlib module which is used to create a new Unzip object....
read more
Node.js zlib.brotliCompress() Method
The zlib.brotliCompress() method is an inbuilt application programming interface of the Zlib module which is used to compresses a chunk of data....
read more
Node.js Zlib Complete Reference
The zlib module provides compression functionality implemented using Gzip, Deflate/Inflate, and Brotli....
read more
Node.js zlib.constants Property
The zlib.constants property is used to yields an object listing Zlib-related constants....
read more
Node.js zlib.inflateRaw() Method
The zlib.inflateRaw() method is an inbuilt application programming interface of the Zlib module which is used to decompress a chunk of data....
read more
Node.js zlib.createBrotliCompress() Method
The zlib.createBrotliCompress() method is an inbuilt application programming interface of the Zlib module which is used to create BrotliCompress object....
read more
Why Zlib is used in Node.js ?
Zlip is a module used in Node.js to compress or decompress a file. Compression means zip the file and decompression means unzip the file. It is a pre-built Node.js module so don’t require to install it as a dependency....
read more
Node.js zlib.brotliDecompress() Method
The zlib.brotliDecompress() method is an inbuilt application programming interface of the Zlib module which is used to decompresses a chunk of data with BrotliCompress....
read more
Node.js zlib.inflateRawSync() Method
The zlib.inflateRawSync() method is an inbuilt application programming interface of the Zlib module which is used to decompress a chunk of data with InflateRaw....
read more
Node.js zlib.flush() Method
The flush() method is called on a compression stream so that it can compel zlib to return as much output as achievable at present. This output may be returned at the cost of corrupt compression quality but it can be useful when data is required to be accessible as early as possible....
read more
Node.js zlib.createBrotliDecompress() Method
The zlib.createBrotliDecompress() method is an inbuilt application programming interface of the Zlib module which is used to create a new BrotliDecompress object....
read more
Node.js zlib.createInflate() Method
The zlib.createInflate() method is an inbuilt application programming interface of the Zlib module which is used to create a new Inflate object....
read more