Getting Started with Node.js on Ubuntu
Getting started with Node.js is an incredibly easy process. I'm going to describe how to get set up on Ubuntu 12.04. First, go to http://nodejs.org/ and download the source code. If the phrase 'source code' makes the back of your neck prickly, don't worry -- this is about as simple as you can possibly get. Be sure that you have the build tools installed: sudo apt-get install build-essential Unpack the source code and launch a terminal in the directory with the source code. Then you will need to build the code: ./configure make sudo make install No de.js is built on the V8 javascript engine that's part of the Chrome browser, and that's what is building now. I'm using a very ancient laptop running the Xubuntu linux variant, and Node takes about five minutes to build. On more powerful hardware, you'll barely notice it. Why build from source and not use a package from the Ubuntu repository? From what I've heard, the official pack...