Search code examples
javascriptnode.jsnodemon

How do you hide the "[nodemon] clean exit - waiting for changes before restart" message?


I don't want to see that message whenever I save a file in my project. I already have

{
    "events": {
        "start": "node -e 'console.clear()'"
    }
}

in my nodemon.json to indicate my project has restarted.


Solution

  • You can tell nodemon to be quiet, by passing the -q argument. According to nodemon --help options, this will:

    minimise nodemon messages to start/stop only

    Usage: nodemon -q