Skip to content
Jason Charney edited this page Jan 30, 2015 · 10 revisions

Node.js, or just Node, is an open source, cross-platform runtime environment for server-side and networking applications. Node.js applications are written in JavaScript, and can be run within the Node.js runtime on most operating systems.

Installing Node

Node requires GCC, Make, and Python. If you are using Linux, you should already have these things.

cd ~/Software
curl -SL http://nodejs.org/dist/v0.10.36/node-v0.10.36.tar.gz | tar xzv
cd node-v0.10.36/
./configure && make && sudo make install && sudo ldconfig

TODO: There is some necessary step that needs to be done to prevent node from SegFaulting on Odroid!

See Also

External Links

Clone this wiki locally