GZip, Inflate でのデータ圧縮、解凍機能を扱うモジュールです。
const zlib = require("zlib");const content = encodeURIComponent("サンプル文字列") ;// エンコードconst result = zlib.gzipSync(content); // 圧縮const value = result.toString('base64'); // Buffer => base64 変換