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 🙏

© 2025 – Pkg Stats / Ryan Hefner

tar-dependency

v0.2.0

Published

Fetches .tar(.gz) archives defined in package.json and extracts them to a specific location.

Downloads

137

Readme

tar-dependency

Installs tar archives defined in package.json to a directory

This is a small helper tool with the following purpose:

  • It fetches / extracts .tar(.gz) archives into a local folder
  • It stores the installed archive infos in package.json

This tool is mainly used for fetching git repositories as tar archives from github / gitlab: The archives needed during development / as part of the package can be defined in package.json, so this information is part of the main repo and can be distributed to source control. It allows adding non-npm dependencies to be installed as part of the package management.

We created this tool to replace Bower, where packages are not available as npm/yarn packages.

Requirements

This library needs at least NodeJS >= 20

Installation

npm install --save-dev tar-dependency

Usage

Note: This tool assumes a package.json in the current working directory.

Install a TAR archive from a URL

tar-dependency add [tar-url] [relative-install-path]

For example:

tar-dependency add --strip 1 https://github.com/bylexus/php-injector/archive/0.0.8.tar.gz packages/php-injector

This fetches the mentioned tar repo to packages/php-injector, and strips the archive's top directory (default).

The added archive is stored in package.json, in the tarDependencies object.

Install archives from package.json

To install archives configured in package.json, execute

tar-dependency install

This installs the archives configured in package.json into their configured relative dir.

Remove installed archive

tar-dependency remove [relative-path]

e.g.:

tar-dependency remove packages/php-injector

This removes the archive from the disk as well as from package.json

Manually change archive entries in package.json

The installed archives are stored in package.json. You can manually edit the entries, if needed. The structure looks as follows:

{
  "tarDependencies": {
      "[relative-dir]": {
          "url": "<url-to-tar-file>",
          "strip": <nr of archive dirs to strip>
      },
    ...
  }
}

For example:

{
  "tarDependencies": {
      "components/php-injector": {
        "url": "https://github.com/bylexus/php-injector/archive/0.0.8.tar.gz",
        "strip": 1
      },
      "components/components-ext": {
        "url": "https://gitlab.kadenpartner.ch/kp/extjs/repository/4.2.6-min/archive.tgz?private_token=abcdefg",
        "strip": 1
      }
  }
}

and then install them with

tar-dependency install

Changelog

0.2.0 - Feb 2025

  • [breaking] Updated to NodeJS >= 20 with ES Modules
  • [breaking] You need a NodeJS version that supports ES Modules (~ V.14.0)
  • Updated dependant packages

0.1.0

Initial release

(c) 2017-2025 [email protected]