node zlib压缩模块了解一下

简介: node zlib压缩模块了解一下

压缩:


index.html压缩成index.html.gz


const zlib = require('zlib');
const gzip = zlib.createGzip();
const fs = require('fs');
const inp = fs.createReadStream('index.html');
const out = fs.createWriteStream('index.html.gz');
inp.pipe(gzip)
  .on('error', () => {
    // 处理错误
  })
  .pipe(out)
  .on('error', () => {
    // 处理错误
  });


解压:


index.html.gz解压为index.html


const zlib = require('zlib');
const gzip = zlib.createGzip();
const fs = require('fs');
const inp = fs.createReadStream('index.html.gz');
const out = fs.createWriteStream('index.html');
inp.pipe(gzip)
  .on('error', () => {
    // 处理错误
  })
  .pipe(out)
  .on('error', () => {
    // 处理错误
  });



相关文章
|
3月前
|
缓存 JavaScript 安全
nodejs里面的http模块介绍和使用
综上所述,Node.js的http模块是构建Web服务的基础,其灵活性和强大功能,结合Node.js异步非阻塞的特点,为现代Web应用开发提供了坚实的基础。
140 62
|
4月前
|
JavaScript 前端开发
Vue、ElementUI配合Node、multiparty模块实现图片上传并反显_小demo
如何使用Vue和Element UI配合Node.js及multiparty模块实现图片上传并反显的功能,包括前端的Element UI组件配置和后端的Node.js服务端代码实现。
75 1
|
3月前
|
缓存 JSON JavaScript
Node.js模块系统
10月更文挑战第4天
56 2
|
3月前
|
JavaScript 应用服务中间件 Apache
Node.js Web 模块
10月更文挑战第7天
41 0
|
3月前
|
JavaScript 网络协议
Node.js 工具模块
10月更文挑战第7天
34 0
|
3月前
|
JavaScript 前端开发 应用服务中间件
Node.js Web 模块
Node.js Web 模块
|
5月前
|
存储 缓存 JSON
Node.js有哪些模块系统
【8月更文挑战第12天】Node.js有哪些模块系统
57 3
|
5月前
[译] Node 模块中的 peer dependencies 是什么?
[译] Node 模块中的 peer dependencies 是什么?
|
6月前
|
存储 JavaScript 安全
Node中的AsyncLocalStorage 使用问题之AsyncLocalStorage与node:async_hooks模块的问题如何解决
Node中的AsyncLocalStorage 使用问题之AsyncLocalStorage与node:async_hooks模块的问题如何解决
|
5月前
|
存储 JavaScript 前端开发
nodejs os模块
nodejs os模块
54 0

热门文章

最新文章