Package Exports
- node-tar.gz
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-tar.gz) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
tar.gz
Pure gzip tarball tools and sugar for Node.js
API
createReadStreamreads a directory and returns a readable stream containing a gzipped tarball.
var fs = require('fs');
var targz = require('tar.gz');
// Create all streams that we need
var read = targz().createReadStream('/some/directory');
var write = fs.createWriteStream('compressed.tar.gz');
// Let the magic happen
read.pipe(write);createWriteStreamwrites the content from a tarball stream into some directory.
var request = require('request');
var targz = require('tar.gz');
// Streams
var read = request.get('https://nodejs.org/dist/v0.12.7/node-v0.12.7.tar.gz');
var write = targz().createWriteStream('/some/directory');
read.pipe(write);createParseStreamreads a tarball stream and emitsentryfor every entry parsed .
var request = require('request');
var targz = require('tar.gz');
// Streams
var read = request.get('https://nodejs.org/dist/v0.12.7/node-v0.12.7.tar.gz');
var parse = targz().createParseStream();
parse.on('entry', function(entry){
console.log(entry.path);
});
read.pipe(parse);compresscompress one directory and saves the result to a tarball.
// Using callbacks
targz().compress('/home/myuser', '/bkp/backup.tar.gz', function(err){
if(err)
console.log('Something is wrong ', err.stack);
console.log('Job done!');
});
// Using promises
targz().compress('/home/myuser', '/bkp/backup.tar.gz')
.then(function(){
console.log('Job done!');
})
.catch(function(err){
console.log('Something is wrong ', err.stack);
});extractextracts a tarball into a directory.
// Using callbacks
targz().extract('/bkp/backup.tar.gz', '/home/myuser', function(err){
if(err)
console.log('Something is wrong ', err.stack);
console.log('Job done!');
});
// Using promises
targz().extract('/bkp/backup.tar.gz', '/home/myuser')
.then(function(){
console.log('Job done!');
})
.catch(function(err){
console.log('Something is wrong ', err.stack);
});Gzip options
You can pass any zlib.createGzip options to tar.gz constructor, like so:
var tarball = new TarGz({
level: 9, // Maximum compression
memLevel: 9
});Command line
It's also possible to use tar.gz as a command line utility, you just need to
install it globally with npm install -g tar.gz. Here is the help command
output.
Usage: targz [options] [command]
Commands:
extract|e <source> <target> Extracts the source tarball into the target directory
compress|c [options] <source> <target> Compress the source directory into the target tarball
list|l <source> List all paths inside the source tarball
Options:
-h, --help output usage information
-V, --version output the version numberTesting
git clone git@github.com:alanhoff/node-tar.gz.git
cd node-tar.gz
npm install && npm testLicense (ISC)
Copyright (c) 2015, Alan Hoffmeister <alanhoffmeister@gmail.com>
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.