npm install @zhzwz/node一个 NodeJS 环境下的工具库。
``ts
import { createArchiver } from '@zhzwz/node'
const archiver = createArchiver()
archiver.append('1.txt')
archiver.append('2-rename.txt', '2.txt')
archiver.appendFile('3.txt', 'The content of 3.txt.')
archiver.appendFloder('', 'floder-1')
archiver.appendFloder('floder-2')
archiver.appendFloder('floder-3-rename', 'floder-3')
archiver.generateZip('./path/to/demo.zip')
``