-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: reduce CLI output and add --help options
Also restore missing -L CLI options. Fixes #1160
- Loading branch information
Showing
6 changed files
with
45 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
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 | ||
|
||
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,jade,hbs" | ||
-I, --no-stdin ........... nodemon passes stdin directly to child process | ||
-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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
|
||
options .................. show all available nodemon options | ||
config ................... default config options using nodemon.json | ||
authors .................. contributors to this project | ||
logo ..................... <3 | ||
whoami ................... I, AM, NODEMON \o/ | ||
|
||
Please contribute http://github.com/remy/nodemon/ | ||
Please support https://github.com/remy/nodemon/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters