What is decompress?
The decompress npm package is a module that allows for decompressing archive files such as zip, tar, tar.gz, and many others. It provides a simple API to easily extract files from these archives.
What are decompress's main functionalities?
Extracting archive files
This feature allows you to extract files from an archive like a zip file into a specified directory. The 'decompress' function returns a promise that resolves with an array of file objects when the extraction is complete.
const decompress = require('decompress');
decompress('unicorn.zip', 'dist').then(files => {
console.log('Files decompressed successfully');
});
Extracting specific files
This feature allows you to extract only specific files from an archive by using a filter function. The filter function is passed each file object, and you return a boolean to indicate whether the file should be extracted.
const decompress = require('decompress');
const filesToExtract = ['unicorn.png', 'rainbow.jpg'];
decompress('archive.zip', 'dist', {
filter: file => filesToExtract.includes(file.path)
}).then(files => {
console.log('Selected files decompressed successfully');
});
Using plugins to handle different archive types
The decompress package can be extended with plugins to support more archive types. In this example, the 'decompress-targz' plugin is used to decompress a '.tar.gz' file.
const decompress = require('decompress');
const decompressTargz = require('decompress-targz');
decompress('unicorn.tar.gz', 'dist', {
plugins: [
decompressTargz()
]
}).then(files => {
console.log('tar.gz file decompressed successfully');
});
Other packages similar to decompress
adm-zip
adm-zip is a JavaScript implementation for zip data compression for NodeJS. It provides functionalities to read and write zip files, much like decompress, but it is focused solely on zip format.
yauzl
yauzl is another npm package for reading and extracting zip files. It aims to be a low-level and high-performance library for zip file I/O, and unlike decompress, it does not support multiple file formats.
tar
The 'tar' package provides the ability to create, extract, and list tar archives. It is similar to decompress in handling tar files but does not support other types of archives.
unzipper
unzipper is a fully streaming unzip library for NodeJS, which provides a simple API for parsing and extracting zip files. It is similar to decompress but focuses on the zip format and offers a streaming interface.
decompress
Easily extract archives
Install
$ npm install --save decompress
Usage
var Decompress = require('decompress');
var decompress = new Decompress()
.src('foo.zip')
.dest('destFolder')
.use(Decompress.zip({ strip: 1 }));
decompress.decompress();
API
new Decompress()
Creates a new Decompress
instance.
.use(plugin)
Add a plugin
to the middleware stack.
.src(file)
Set the file to be extract. Can be a Buffer
or the path to a file.
.dest(path)
Set the destination to where your file will be extracted to.
.decompress(cb)
Extract your file with the given settings.
.run(file, cb)
Run all middleware plugins on your file.
Plugins
The following plugins are bundled with decompress:
- tar — Extract TAR files.
- tar.gz — Extract TAR.GZ files.
- zip — Extract ZIP files.
.tar()
Extract TAR files.
var Decompress = require('decompress');
var decompress = new Decompress()
.use(Decompress.tar({ strip: 1 }));
.targz()
Extract TAR.GZ files.
var Decompress = require('decompress');
var decompress = new Decompress()
.use(Decompress.targz({ strip: 1 }));
.zip()
Extract ZIP files.
var Decompress = require('decompress');
var decompress = new Decompress()
.use(Decompress.zip({ strip: 1 }));
License
MIT © Kevin Mårtensson