Install Node-Red

less than 1 minute read

Install

Are you already installed nodejs?

nvm list available
nvm install 12.22.6
nvm list
or 
nvm ls
nvm use 12.22.6


Install Node-RED on your Raspberry-Pi

  • I will try this next time.

Open your CMD

npm install -g --unsafe-perm node-red


  • This is execution command. ▼
node-red


  • You can use node-red on Web browser. ▼ 13 14
127.0.0.1:1883
192.168.0.X (Local network)


Pm2

nodejs Back-End Server Control

npm install pm2 -g
pm2 start appname.js
pm2 start appname.js --watch
pm2 kill
pm2 log
pm2 monit
pm2 kill
pm2 log
pm2 monit
pm2 startup
pm2 unstartup
pm2 save

Additional pallete on Node-red

node-red-dashboard
node-red-node-serialport


Go to top

Leave a comment