1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-05 07:35:33 +02:00

nodemon: add German translation (#6636)

This commit is contained in:
Joachim Schwarm 2021-10-01 22:18:15 +02:00 committed by GitHub
parent 136b935155
commit 0e63317f8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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