javascript - How can I start the node red with forever in my linux server? -
i installed node-red npm , able run node red typing 'node-red' in terminal thats it. how can run the node red in linux server forever command ? want node red running continuously.
you can start script daemon. first install forever globally: npm -g install forever
(you'll need root privileges that). issue command forever start /path/to/node-red red.js
.
Comments
Post a Comment