How start node-red without any flows running?

How start node-red without any flows running? Have a module that is generating uncaught exception, and it keeps crashing node-red. The issue is module has a bad parameter setting, but since the flow keeps running when node-red runs... caught in an endless loop!

you can start node red in SAFE-Mode. This will start node-red but not start the flows

depending on your setup it can be as easy as

node-red --safe

please read the documentation

1 Like

Ah... I tried node-red --no-flows... but that did not work, completely forgot about --safe. Thx.

Just for reference for those using docker (I had this problem today ) set the environment variable

NODE_RED_ENABLE_SAFE_MODE=true

(And change it back to false for normal ops)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.