El método zlib.createGzip() es una interfaz de programación de aplicaciones incorporada del módulo Zlib que se utiliza para crear un nuevo objeto Gzip.
Sintaxis:
zlib.createGzip( options )
Parámetros: este método acepta opciones de un solo parámetro , que es un parámetro opcional que contiene las opciones de zlib.
Valor devuelto: Devuelve un nuevo objeto Gzip.
Los siguientes ejemplos ilustran el uso del método zlib.createGzip() en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // createGzip() method // Including zlib and fs module const zlib = require("zlib"); const fs = require('fs'); // Creating readable Stream const inp = fs.createReadStream('input.txt'); // Creating writable stream const out = fs.createWriteStream('input.txt.gz'); // Calling createGzip method const gzip = zlib.createGzip(); // Piping inp.pipe(gzip).pipe(out); console.log("Gzip created!");
Producción:
Gzip created!
Ejemplo 2:
// Node.js program to demonstrate the // createGzip() method // Including zlib and fs module const zlib = require("zlib"); const fs = require('fs'); // Creating readable Stream const inp = fs.createReadStream('input.txt'); // Creating writable stream const out = fs.createWriteStream('input.txt.gz'); // Calling createGzip method const gzip = zlib.createGzip(); // Piping inp.pipe(out).pipe(gzip); console.log("Gzip created!");
Producción:
Error [ERR_STREAM_CANNOT_PIPE]: Cannot pipe, not readable at WriteStream.Writable.pipe (_stream_writable.js:243:24) at /home/runner/SomberMonumentalCad/index.js:19:15 at Script.runInContext (vm.js:133:20) at Object. (/run_dir/interp.js:156:20) at Module._compile (internal/modules/cjs/loader.js:778:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) at Module.load (internal/modules/cjs/loader.js:653:32) at tryModuleLoad (internal/modules/cjs/loader.js:593:12) at Function.Module._load (internal/modules/cjs/loader.js:585:3)
Aquí, la tubería no se realiza en el orden correcto, por lo que se genera un error.
Referencia: https://nodejs.org/api/zlib.html#zlib_zlib_creategzip_options
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA