This article covers a version of Ubuntu that is no longer supported. If you are currently operate a server running Ubuntu 12.04, we highly recommend upgrading or migrating to a supported version of Ubuntu:
Reason: Ubuntu 12.04 reached end of life (EOL) on April 28, 2017 and no longer receives security patches or updates. This guide is no longer maintained.
See Instead:
This guide might still be useful as a reference, but may not work on other Ubuntu releases. If available, we strongly recommend using a guide written for the version of Ubuntu you are using. You can use the search functionality at the top of the page to find a more recent version.
Node.js. is a system that uses event-driven (as opposed to thread-based) programming to build scalable applications and network programs. It is especially helpful for building web servers. Written in Javascript, node.js was created in 2009 and is currently the second most popular repository on github.
Feel free to skip this section if you have a compiler and curl installed on your droplet. These steps are included since both a compiler and curl are required for the node.js installation itself. Additionally, you will need to have sudo privileges on your virtual private server for the next three commands (the actual installation does not require them).
Go ahead and run an apt-get update before starting to install any of the requirements.
sudo apt-get update
Once the update finishes, install a compiler on your VPS.
sudo apt-get install build-essential
Additionally, be sure to download curl, which we will need to perform the installation itself.
sudo apt-get install curl
Once those two components have downloaded, you are all ready to install node.js.
I found the method described below to be the easiest way to install node.js. According to their site, there are eight ways to install node.js, and you can check out the other possibilities if you prefer.
This specific installation is very straightforward and installs node.js on the user's local system alone.
Start by changing the path to include commands from the ~/local/bin directory.
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
Follow up by sourcing the .bashrc file:
. ~/.bashrc
Create two new directories for the installation:
mkdir ~/local mkdir ~/node-latest-install
Switch into the latest-install folder:
cd ~/node-latest-install
Run curl to get the node.js tarball and subsequently untar it.
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
Once that has completed, you can go ahead and start the installation process, limiting it to the local user. This ensures that you will not need sudo later.
./configure --prefix=~/local
Run make install, but be warned: it does take a while.
make install
Finish up by downloading the the node package manager through curl:
curl -L https://npmjs.org/install.sh | sh
After you are all done, you can quickly check which version you have installed on your virtual private server.
node -v
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
@me: Check out <a href=“https://www.digitalocean.com/community/articles/how-to-host-multiple-node-js-applications-on-a-single-vps-with-nginx-forever-and-crontab”>https://www.digitalocean.com/community/articles/how-to-host-multiple-node-js-applications-on-a-single-vps-with-nginx-forever-and-crontab</a>.
Fixed it. The problem above usually happens when the system runs out of memory. My VPS has only 256mb RAM, and it appears gcc uses more memory to compile it in 64 bits version, so I created a swapfile following this tutorial: http://digitizor.com/2011/02/06/create-swap-file-ubuntu-linux/
Hope it helps if anyone have the same problem.
Hello, I’ve tried this install in my Vagrant machine and runs perfect, but when I shutdown the VM the installation of Node + NPM disappears, and I have got to install it all again.
Does anyone knows why?
Thanks
Works like a charm
node -v 10.33
andnpm -v 2.1.11
@buszu64: Try: <pre> curl -L https://npmjs.org/install.sh | sh </pre>
I’ll fix that in the article.
curl https://npmjs.org/install.sh | sh
% Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 193 100 193 0 0 451 0 --:–:-- --:–:-- --:–:-- 772 sh: 1: cannot open html: No such file sh: 2: Syntax error: redirection unexpected
I believe that’s not what I should see here…
@shrikant.khandare: What’s the output of <code>echo $PATH</code>? Try logging out and logging back in, does that fix it?
Folder structure for my ~/local/ dir is -local -bin
-include
-lib -share
I tired to set path in “bashrc” file as NODE=“/home/ubuntu/local/bin/node” NODE_PATH=“/home/ubuntu/local/lib/node_modules”
but it is not working. What should I do here.
I follow all the steps but getting following error The program ‘node’ can be found in the following packages:
You’ll need curl to follow redirects when installing npm:
curl -L https://npmjs.org/install.sh | sh