Installing Node.js on a Raspberry Pi

adamkdean

Adam K Dean

Posted on May 15, 2015

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.

💖 💪 🙅 🚩
adamkdean
Adam K Dean

Posted on May 15, 2015

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Which Pi?
raspberrypi Which Pi?

February 3, 2018

Installing Node.js on a Raspberry Pi
raspberrypi Installing Node.js on a Raspberry Pi

May 15, 2015