nodejs中使用archive压缩文件的实现代码


Posted in NodeJs onNovember 26, 2019

前言

archive是一款在nodejs中可以实现跨平台打包的工具

可以将文件压缩为zip或rar格式

是一个比较好用的第三方模块

install

npm install archiver --save

archive github地址:https://github.com/archiverjs/node-archiver

Quick Start

// require modules
var fs = require('fs');
var archiver = require('archiver');

// create a file to stream archive data to.
var output = fs.createWriteStream(__dirname + '/example.zip');
//设置压缩格式为zip
var archive = archiver('zip', {
  zlib: { level: 9 } // Sets the compression level.
});

// listen for all archive data to be written
// 'close' event is fired only when a file descriptor is involved
output.on('close', function() {
  console.log(archive.pointer() + ' total bytes');
  console.log('archiver has been finalized and the output file descriptor has closed.');
});

// This event is fired when the data source is drained no matter what was the data source.
// It is not part of this library but rather from the NodeJS Stream API.
// @see:  https://nodejs.org/api/stream.html#stream_event_end
output.on('end', function() {
  console.log('Data has been drained');
});

// good practice to catch this error explicitly
archive.on('error', function(err) {
  throw err;
});
// pipe archive data to the file
archive.pipe(output);
// append a file from stream
var file1 = __dirname + '/file1.txt';
archive.append(fs.createReadStream(file1), { name: 'file1.txt' });

// append a file from string
archive.append('string cheese!', { name: 'file2.txt' });
// append a file from buffer
var buffer3 = Buffer.from('buff it!');
archive.append(buffer3, { name: 'file3.txt' });

// append a file
archive.file('file1.txt', { name: 'file4.txt' });

// append files from a sub-directory and naming it `new-subdir` within the archive
archive.directory('subdir/', 'new-subdir');

// append files from a sub-directory, putting its contents at the root of archive
archive.directory('subdir/', false);

// append files from a glob pattern
archive.glob('subdir/*.txt');

// finalize the archive (ie we are done appending files but streams have to finish yet)
// 'close', 'end' or 'finish' may be fired right after calling this method so register to them beforehand
archive.finalize();

实际使用

实际使用中情况可能会比较多

需要打包的源文件一般为远程文件,比如某一个第三方的文件存放地址,这时则需要先将第三方文件下载到本地

示例方法,可以根据实际需要修改相应的参数

function download(files){
  //下载文件的本地存档地址
  //示例 files = [{name: 'xxxx.js',url:'https://xx/xx/xxxx.js'}]
  let dirPath = path.resolve(__dirname, '文件存放的本地位置')
  mkdir(dirPath);

  let tmps = files.map((item,index) => {
    let stream = fs.createWriteStream(path.resolve(dirPath, item.name));

  return new Promise((resolve,reject)=>{
    try {
      request(item.url).pipe(stream).on("close", function (err) {
        console.log("文件[" + item.name + "]下载完毕");

        resolve({
          url: path.resolve(dirPath, item.name),
          name: item.name
        })
      });
    } catch (e) {
      reject(e||'')
    }
  })
});

return new Promise((res,rej)=>{
  Promise.all(tmps).then((result) => {
    console.log(result)
    res(result)
  }).catch((error) => {
    console.log(error||'')
  })
})
}

//创建文件夹目录
function mkdir(dirPath) {
  if (!fs.existsSync(dirPath)) {
    fs.mkdirSync(dirPath);
    console.log("文件夹创建成功");
  } else {
    console.log("文件夹已存在");
  }
}

将下载到本地的文件打包为一个zip文件,可以参照 Quick Start 中的api组合使用

// append files from a sub-directory, putting its contents at the root of archive
 archive.directory('subdir/', false);
 //要注意第二个参数false,这个参数代表打包后的文件相对于output的目录结构,不写这个参数代表按照第一个参数('subdir/')的目录层级

打包之后的文件位置是在本地位置,此时在推送到前端页面中下载url需要组装成http或https的地址

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

NodeJs 相关文章推荐
使用forever管理nodejs应用教程
Jun 03 NodeJs
轻松创建nodejs服务器(6):作出响应
Dec 18 NodeJs
Highcharts+NodeJS搭建数据可视化平台示例
Jan 01 NodeJs
详解nodejs中的process进程
Mar 19 NodeJs
Nodejs进阶:express+session实现简易登录身份认证
Apr 24 NodeJs
配置nodejs环境的方法
May 13 NodeJs
深入浅析Nodejs的Http模块
Jun 20 NodeJs
NodeJS链接MySql数据库的操作方法
Jun 27 NodeJs
详解nodejs通过代理(proxy)发送http请求(request)
Sep 22 NodeJs
nodejs使用http模块发送get与post请求的方法示例
Jan 08 NodeJs
nodejs实现的连接MySQL数据库功能示例
Jan 25 NodeJs
nodejs require js文件入口,在package.json中指定默认入口main方法
Oct 10 NodeJs
NodeJS实现一个聊天室功能
Nov 25 #NodeJs
Nodejs使用archiver-zip-encrypted库加密压缩文件时报错(解决方案)
Nov 18 #NodeJs
NodeJs crypto加密制作token的实现代码
Nov 15 #NodeJs
Nodejs技巧之Exceljs表格操作用法示例
Nov 06 #NodeJs
NodeJS http模块用法示例【创建web服务器/客户端】
Nov 05 #NodeJs
nodejs实现UDP组播示例方法
Nov 04 #NodeJs
nodejs dgram模块广播+组播的实现示例
Nov 04 #NodeJs
You might like
安装apache2.2.22配置php5.4(具体操作步骤)
2013/06/26 PHP
js实现禁止中文输入的方法
2015/01/14 Javascript
jquery使用animate方法实现控制元素移动
2015/03/27 Javascript
jQuery实现监控页面所有ajax请求的方法
2015/12/10 Javascript
轻松掌握JavaScript状态模式
2016/09/07 Javascript
jquery二级目录选中当前页的css样式
2016/12/08 Javascript
js实现鼠标左右移动,图片也跟着移动效果
2017/01/25 Javascript
Angular.JS实现无限级的联动菜单(使用demo)
2017/02/08 Javascript
js 获取图像缩放后的实际宽高,位置等信息
2017/03/07 Javascript
关于javascript获取内联样式与嵌入式样式的实例
2017/06/01 Javascript
nodejs模块学习之connect解析
2017/07/05 NodeJs
详解EasyUi控件中的Datagrid
2017/08/23 Javascript
vue 子组件向父组件传值方法
2018/02/26 Javascript
angularjs性能优化的方法
2018/09/05 Javascript
Linux下将Python的Django项目部署到Apache服务器
2015/12/24 Python
Python使用Srapy框架爬虫模拟登陆并抓取知乎内容
2016/07/02 Python
Windows下Python2与Python3两个版本共存的方法详解
2017/02/12 Python
python实现的正则表达式功能入门教程【经典】
2017/06/05 Python
对python中的高效迭代器函数详解
2018/10/18 Python
Numpy之random函数使用学习
2019/01/29 Python
Django实现基于类的分页功能
2019/10/31 Python
Python图像处理二值化方法实例汇总
2020/07/24 Python
Python利用socket模块开发简单的端口扫描工具的实现
2021/01/27 Python
在HTML5 Canvas中放入图片和保存为图片的方法
2014/05/03 HTML / CSS
现代绅士日常奢侈品:Todd Snyder
2019/12/13 全球购物
Java面试中常遇到的问题,也是需要注意的几点
2013/08/30 面试题
致共产党员倡议书
2014/04/16 职场文书
保护环境建议书300字
2014/05/13 职场文书
保护野生动物倡议书
2014/05/16 职场文书
关于环保的活动方案
2014/08/25 职场文书
质量整改报告范文
2014/11/08 职场文书
十岁生日答谢词
2015/01/05 职场文书
幼儿教师个人总结
2015/02/05 职场文书
党课主持词大全
2015/06/30 职场文书
公文写作指导之倡议书!
2019/07/03 职场文书
MySql数据库触发器使用教程
2022/06/01 MySQL