Get Node-Red running version

Is there a way to get the current running version of NodeRed from the terminal or from a script, while NR is running and without opening the admin editor?

node-red -?

see 4 posts down:)

1 Like
$ node-red -? | head -1 | cut -d ' ' -f 2
v2.2.2
$ node-red -? | head -1 | cut -d 'v' -f 2
2.2.2

1 Like

node-red -? | grep Node-RED :slight_smile:

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