mirror of https://github.com/CrimsonTome/tldr.git
25 lines
617 B
Markdown
25 lines
617 B
Markdown
# nodemon
|
|
|
|
> Beobachtet Dateien und startet Node Applikationen automatisch neu, wenn Änderungen erkannt wurden.
|
|
> Weitere Informationen: <https://nodemon.io>.
|
|
|
|
- Führe die angegebene Datei aus und warte auf Änderungen:
|
|
|
|
`nodemon {{pfad/zu/datei.js}}`
|
|
|
|
- Manueller Neustart von Nodemon (beachte, dass Nodemon dabei aktiv sein muss):
|
|
|
|
`rs`
|
|
|
|
- Ignoriere bestimmte Dateien:
|
|
|
|
`nodemon --ignore {{pfad/zu/datei_oder_verzeichnis}}`
|
|
|
|
- Übergib Argumente an die Node Applikation:
|
|
|
|
`nodemon {{pfad/zu/datei.js}} {{argumente}}`
|
|
|
|
- Führe Nicht-Node Skripte aus:
|
|
|
|
`nodemon --exec "{{python --verbose}}" {{pfad/zu/datei.py}}`
|