npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-tar.gz

v1.0.0

Published

Pure javascript tarball tools for Node.js

Downloads

945

Readme

tar.gz

Coverage Status Travis Dependencies

Pure gzip tarball tools and sugar for Node.js

API

  • createReadStream reads 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);
  • createWriteStream writes 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);
  • createParseStream reads a tarball stream and emits entry for 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);
  • compress compress 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);
  });
  • extract extracts 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 number

Testing

git clone [email protected]:alanhoff/node-tar.gz.git
cd node-tar.gz
npm install && npm test

License (ISC)

Copyright (c) 2015, Alan Hoffmeister <[email protected]>

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.