Has anyone found a current instruction set for running Node-Red on a Chromebook?
There are a few different instructions on Reddit and around but all of them hit a snag at some point likely due to permissions or being out of date. I would rather start with something accurate and current than keep troubleshooting the installation.
The best way might be to install GalliumOS https://galliumos.org/ instead of Chrome OS. I did it on my old ASUS Chromebook and it runs well. Unfortunately it has no charge at the moment so I can't try it but node-red should be a breeze to install as it is based on Ubuntu.
Install the Node Package Manager and set it up
sudo apt install npm && sudo npm i -g npm
And finally install node-red sudo npm install -g --unsafe-perm node-red
Find out what IP address your crostini container uses ip addr | grep "inet 100."
Start node-red with the command node-red
Point your web-browser towards http://[container ip]:1880
Which got hung up on Step 7 with the combined curl fetch and install Node JS. I was able to install NodeJS following other methods but then could not get Step 8 to work (install npm).