summaryrefslogtreecommitdiffstats
path: root/node_modules/nodemon/doc/cli/options.txt
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-16 00:10:28 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-16 00:10:28 +0100
commite06ec920f7a5d784e674c4c4b4e6d1da3dc7391d (patch)
tree55713f725f77b44ebfec86e4eec3ce33e71458ca /node_modules/nodemon/doc/cli/options.txt
downloadwebsite_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.gz
website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.bz2
website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.zip
api, login, auth
Diffstat (limited to 'node_modules/nodemon/doc/cli/options.txt')
-rw-r--r--node_modules/nodemon/doc/cli/options.txt36
1 files changed, 36 insertions, 0 deletions
diff --git a/node_modules/nodemon/doc/cli/options.txt b/node_modules/nodemon/doc/cli/options.txt
new file mode 100644
index 0000000..af0edb5
--- /dev/null
+++ b/node_modules/nodemon/doc/cli/options.txt
@@ -0,0 +1,36 @@
+
+Configuration
+ --config <file> .......... alternate nodemon.json config file to use
+ --exitcrash .............. exit on crash, allows nodemon to work with other watchers
+ -i, --ignore ............. ignore specific files or directories
+ --no-colors .............. disable color output
+ --signal <signal> ........ use specified kill signal instead of default (ex. SIGTERM)
+ -w, --watch dir........... watch directory "dir" or files. use once for each
+ directory or file to watch
+ --no-update-notifier ..... opt-out of update version check
+
+Execution
+ -C, --on-change-only ..... execute script on change only, not startup
+ --cwd <dir> .............. change into <dir> before running the script
+ -e, --ext ................ extensions to look for, ie. "js,pug,hbs"
+ -I, --no-stdin ........... nodemon passes stdin directly to child process
+ --spawn .................. force nodemon to use spawn (over fork) [node only]
+ -x, --exec app ........... execute script with "app", ie. -x "python -v"
+ -- <your args> ........... to tell nodemon stop slurping arguments
+
+Watching
+ -d, --delay n ............ debounce restart for "n" seconds
+ -L, --legacy-watch ....... use polling to watch for changes (typically needed
+ when watching over a network/Docker)
+ -P, --polling-interval ... combined with -L, milliseconds to poll for (default 100)
+
+Information
+ --dump ................... print full debug configuration
+ -h, --help ............... default help
+ --help <topic> ........... help on a specific feature. Try "--help topics"
+ -q, --quiet .............. minimise nodemon messages to start/stop only
+ -v, --version ............ current nodemon version
+ -V, --verbose ............ show detail on what is causing restarts
+
+
+> Note that any unrecognised arguments are passed to the executing command.