DEV Community

Cover image for Installing Node.js on a Raspberry Pi
Adam K Dean
Adam K Dean

Posted on

Installing Node.js on a Raspberry Pi

Raspbian is based on of Debian Wheezy, so things are a little different than the standard Ubuntu 14.04 installs. Remember to always read a script before you curl it to bash.

curl -sLS https://apt.adafruit.com/add | sudo bash
sudo apt-get install node
Enter fullscreen mode Exit fullscreen mode

Now check it's running okay...

pi@raspberrypi ~ $ node -v
v0.12.0
Enter fullscreen mode Exit fullscreen mode

Ok so it's a little behind but still on 0.12.X.

Top comments (0)