summaryrefslogtreecommitdiff
path: root/node_modules/nugget/readme.md
diff options
context:
space:
mode:
authorLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 23:08:57 +0300
committerLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 23:08:57 +0300
commit726b81b19251674e149ccfbb1abacbd837fc6db0 (patch)
treefbdbb227dc01357eb76e8222d76185bc124c5ca6 /node_modules/nugget/readme.md
parent34f0890e175698940d49238097579f44e4d78c89 (diff)
downloadFlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.gz
FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.zst
Removed files that should not have been included in git
Diffstat (limited to 'node_modules/nugget/readme.md')
-rw-r--r--node_modules/nugget/readme.md58
1 files changed, 0 insertions, 58 deletions
diff --git a/node_modules/nugget/readme.md b/node_modules/nugget/readme.md
deleted file mode 100644
index 439975b..0000000
--- a/node_modules/nugget/readme.md
+++ /dev/null
@@ -1,58 +0,0 @@
-# nugget
-
-Minimalist command line downloader written in node, inspired by wget. HTTP GETs a file and streams it into a file in the current working directory. Specializes at downloading many files in parallel.
-
-[![NPM](https://nodei.co/npm/nugget.png?global=true)](https://nodei.co/npm/nugget/)
-![dat](http://img.shields.io/badge/Development%20sponsored%20by-dat-green.svg?style=flat)
-[![Travis](http://img.shields.io/travis/maxogden/nugget.svg?style=flat)](https://travis-ci.org/maxogden/nugget)
-
-## installation
-
-```
-npm install nugget -g
-```
-
-## usage
-
-```
-Usage: nugget <urls> [options]
- -o output filename
- -d output parent directory
- -c resume aborted download
- -f ignore response codes > 299
- -s concurrent socket limit (default infinity)
- -q disable logging
-```
-
-### examples
-
-```
-nugget http://foo.com/bar.jpg
-# downloads bar.jpg and stores it in the current directory
-```
-
-or
-
-```
-nugget http://foo.com/bar.jpg -O baz.jpg
-# saves it as baz.jpg. you can also do lowercase -o
-```
-
-if you get a statusCode of 300 or greater nugget will stop. you can force it to stream the response into a file anyway by doing `nugget http://404link.com/file.html -f` or `--force` works too
-
-you can also download multiple files, just pass multiple urls:
-
-![download multiple](multiple.png)
-
-## options
-
-The following options are recognized by nugget:
-
- * `-s|--sockets` - default Infinity. specify the number of http sockets to use at once (this controls concurrency)
- * `-o|-O|--out` - specify the filename to write to. this only works if you are downloading a single file
- * `-d|--dir` - save files in a directory other than the current one.
- * `-c|--continue` - resume downloads if a partially complete target file already exists. If the target file exists and is the same size as the remote file, nothing will be done.
- * `-f|--force` - force the server response to be saved to the target file, even if it's a non-successful status code.
- * `-q|--quiet` - disable logging
- * `--no-strict-ssl` - disable strict ssl
- * `--proxy` - specify a proxy to use