add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,32 @@
# 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}}`