Forrest logo
back to context overview

nodemon

List of commands for nodemon:

  • nodemon:tldr:05698 nodemon: Execute the specified file and watch a specific file for changes.
    $ nodemon ${filename-js}
    try on your machine
    explain this command
  • nodemon:tldr:3a2d7 nodemon: Manually restart nodemon (note nodemon must already be active for this to work).
    $ rs
    try on your machine
    explain this command
  • nodemon:tldr:72bcb nodemon: Run a Python script.
    $ nodemon --exec "python ${options}" ${filename-py}
    try on your machine
    explain this command
  • nodemon:tldr:a279b nodemon: Pass arguments to the node application.
    $ nodemon ${filename-js} ${arguments}
    try on your machine
    explain this command
  • nodemon:tldr:b68fe nodemon: Run an arbitrary non-node script.
    $ nodemon --exec "${command_to_run_script} ${options}" ${path-to-script}
    try on your machine
    explain this command
  • nodemon:tldr:ba1eb nodemon: Ignore specific files.
    $ nodemon --ignore ${filename_or_directory}
    try on your machine
    explain this command
back to context overview