32 lines
810 B
Markdown
32 lines
810 B
Markdown
# nodemon
|
||
|
||
> 监视文件并在检测到更改时自动重启 Node 应用程序。
|
||
> 更多信息:<https://nodemon.io>。
|
||
|
||
- 执行指定的文件并监视特定文件的更改:
|
||
|
||
`nodemon {{path/to/file.js}}`
|
||
|
||
- 手动重启 nodemon(注意 nodemon 必须已经在运行中才能使用此命令):
|
||
|
||
`rs`
|
||
|
||
- 忽略特定文件:
|
||
|
||
`nodemon --ignore {{path/to/file_or_directory}}`
|
||
|
||
- 向 Node 应用程序传递参数:
|
||
|
||
`nodemon {{path/to/file.js}} {{arguments}}`
|
||
|
||
- 如果参数不是 nodemon 参数,则向 Node 本身传递参数(例如 `--inspect`):
|
||
|
||
`nodemon {{arguments}} {{path/to/file.js}}`
|
||
|
||
- 运行任意非 Node 脚本:
|
||
|
||
`nodemon --exec "{{command_to_run_script}} {{options}}" {{path/to/script}}`
|
||
|
||
- 运行 Python 脚本:
|
||
|
||
`nodemon --exec "python {{options}}" {{path/to/file.py}}` |