Gathering detailed insights and metrics for download-package-tarball
Gathering detailed insights and metrics for download-package-tarball
Gathering detailed insights and metrics for download-package-tarball
Gathering detailed insights and metrics for download-package-tarball
get-tarball-cli
Download tarballs from npm using a package-lock.json file
tgz-package-downloader
download tarball from package-json
firebundle
A CLI tool that allows you to download npm packages as tarballs, including their dependencies recursively.
npm-package-downloader
If you need to mass download NPM packages for any reason (Like an offline storage) this is the package your looking for. The downloader downloads the specified packages as a tarball, ready to be used with npm storage solutions such as Sinopia. * Does no
Download a node package as a tarball, for example from github or npm
npm install download-package-tarball
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
4 Stars
27 Commits
4 Forks
12 Branches
1 Contributors
Updated on Mar 10, 2023
Latest Version
1.0.7
Package Id
download-package-tarball@1.0.7
Size
4.80 kB
NPM Version
5.3.0
Node Version
8.6.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Download a node package as a tarball, for example from github or npm
Download node at nodejs.org and install it, if you haven't already.
1npm install download-package-tarball --save
1/* eslint-disable import/no-extraneous-dependencies */ 2 3import download from 'download-package-tarball'; 4 5download({ 6 // a npm tarball url will work 7 url: 'https://registry.npmjs.org/snappy/-/snappy-5.0.5.tgz', 8 dir: '/dir/where/file/will/be/downloaded' 9}).then(() => { 10 console.log('file is now downloaded!'); 11}).catch(err => { 12 console.log('oh crap the file could not be downloaded properly'); 13 console.log(err); 14}); 15 16download({ 17 // ... but also a github tarball url 18 url: 'https://api.github.com/repos/kesla/node-snappy/tarball/master', 19 dir: '/dir/where/file/will/be/downloaded', 20 // custom options that will be forwarded to got.stream(..., opts) can also be set 21 gotOpts: { 22 headers: { 23 beep: 'boop' 24 } 25 } 26}).then(() => { 27 console.log('file is now downloaded!'); 28}).catch(err => { 29 console.log('oh crap the file could not be downloaded properly'); 30 console.log(err); 31}); 32 33download({ 34 // or a tar file somewhere 35 url: 'http://link-to-tarball/file.tar', 36 dir: '/dir/where/file/will/be/downloaded' 37}).then(() => { 38 console.log('file is now downloaded!'); 39}).catch(err => { 40 console.log('oh crap the file could not be downloaded properly'); 41 console.log(err); 42}); 43
1npm install 2npm test
npm install
MIT
Generated by package-json-to-readme
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 1/26 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
44 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More