5

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.

sdfsdf
  • 5,052
  • 9
  • 42
  • 75

1 Answers1

8

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

Bennett Hardwick
  • 1,359
  • 9
  • 16