this npm-cache is a fork of npm-cache from dashlane that supports arg flowthrough and creates more robust hashes to avoid using wrong hash tar - only the npm version is targeted in this instance...your mileage may vary with the other packagers. Hash is created by globbing devdependencies, dependencies and installOptions.
this can also be used to create environment specific hash tarballs (on a build server)
for instance
npm-cache install npm --production --bserver01
would create a different hash tarball than
npm-cache install npm --production --bserver02
npm-cache is a command line utility that caches dependencies installed via npm, bower, jspm, composer and yarn.
It is useful for build processes that run [npm|bower|composer|jspm|yarn] install every time as part of their
build process. Since dependencies don't change often, this often means slower build times. npm-cache
helps alleviate this problem by caching previously installed dependencies on the build machine.
npm-cache can be a drop-in replacement for any build script that runs [npm|bower|composer|jspm] install.
When you run npm-cache install [npm|bower|jspm|composer|yarn], it first looks for package.json, bower.json,
or composer.json in the current working directory depending on which dependency manager is requested.
It then calculates the MD5 hash of the configuration file and looks for a filed named
.tar.gz in the cache directory ($HOME/.package_cache by default). If the file does not
exist, npm-cache uses the system's installed dependency manager to install the dependencies. Once the
dependencies are installed, npm-cache tars the newly downloaded dependencies and stores them in the
cache directory. The next time npm-cache runs and sees the same config file, it will find the tarball
in the cache directory and untar the dependencies in the current working directory.
npm install -g npm-cache
npm-cache install
To specify arguments to each dependency manager, add the arguments after listing the dependency manager.
For example, to install bower components with the --allow-root option, and composer with the --dry-run option:
npm-cache install bower --allow-root composer --dry-run
npm-cache install # try to install npm, bower, and composer components
npm-cache install bower # install only bower components
npm-cache install bower npm # install bower and npm components
npm-cache install --cacheDirectory /home/cache/ bower # install components using /home/cache as cache directory
npm-cache install --forceRefresh bower # force installing dependencies from package manager without cache
npm-cache install --noArchive npm # do not compress/archive the cached dependencies
npm-cache install npm --production -msvs_version=2013 # add args to npm installer
npm-cache install npm --production -msvs_version=2013 bower --silent # add args to npm installer and bower
npm-cache clean # cleans out all cached files in cache directory
npm-cache hash # reports the current working hashThough I have a busy day job, I will do my best to add simple feature requests and merge PRs as soon as I can. I know this package is not following many of today's best practices (namely TESTS, a proper branching strategy, and more), but I hope you still find it useful.
Important: Please submit all pull requests to the branch feature/pull-requests