question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

It is possible to hide [taskname] prefix with quiet: true. Is it possible to hide rows that have [nodemon]?

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:3
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
M-Zubercommented, Jun 13, 2021

My apologies, this has been out for a while. You can set silent in the config for a script, and it will hide all nodemon output

"echo": {
    "patterns": "index.js",
    "silent": true,
    "ignore": [
        "*.foo.js"
    ]
},
0reactions
leviwheatcroftcommented, Jan 11, 2019

In my case I was getting spammed with hundreds of lines like:

[nodemon] files triggering change check: build/stats/graph.csv
[nodemon] changes after filters (before/after): 1/0

Turns out I had a global nodemon.json with "verbose": true, solution was to add this to repo package.json:

  "nodemonConfig": {
    "verbose": false
  }

This won’t work for the other minimal starting / watching output nodemon provides.

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to silence nodemon completely? · Issue #360 - GitHub
Is there already a trick for that? I want zero console output from nodemon to keep my console clean while developing with gulp....
Read more >
How to hide the yellow console.logs in nodemon
minimise nodemon messages to start/stop only. So run: nodemon --quiet your-file.js. Share.
Read more >
Automatically restart Node.js apps with Nodemon
The essential tutorial for Nodemon, a utility for Node.js applications that monitors for changes and automatically restarts the server.
Read more >
concurrently - npm
Run commands concurrently. Latest version: 7.6.0, last published: a month ago. Start using concurrently in your project by running `npm i ...
Read more >
https://unpkg.com/nodemon@1.18.5/doc/cli/options.txt
Configuration --config <file> .......... alternate nodemon.json config file to use --exitcrash .............. exit on crash, allows nodemon to work with ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found