nodemon Command Examples

Watch files and automatically restart a node application when changes are detected. More information: https://nodemon.io.

nodemon {{path/to/file.js}}

rs

nodemon --ignore {{path/to/file_or_directory}}

nodemon {{path/to/file.js}} {{arguments}}

nodemon {{arguments}} {{path/to/file.js}}

nodemon --exec "{{command_to_run_script}} {{options}}" {{path/to/script}}

nodemon --exec "python {{options}}" {{path/to/file.py}}