Fix headers

This commit is contained in:
Ariejan de Vroom 2016-05-30 09:35:56 +02:00
parent 88097c013e
commit 5b5efa4f7d
Signed by untrusted user who does not match committer: ariejan
GPG Key ID: AD739154F713697B

View File

@ -6,12 +6,12 @@ slug = "installing-node-js-and-npm-on-ubuntu-debian"
+++
This is just short snippet on how to install Node.js (any version) and NPM (Node Package Manager) on your Ubuntu/Debian system.
**Step 1 - Update your system**
## Step 1 - Update your system
sudo apt-get update
sudo apt-get install git-core curl build-essential openssl libssl-dev
**Step 2 - Install Node.js**
## Step 2 - Install Node.js
First, clone the Node.js repository:
@ -33,8 +33,8 @@ Then, check if node was installed correctly:
node -v
** Step 3 - Install NPM**
## Step 3 - Install NPM
Simply run the NPM install script:
curl https://npmjs.org/install.sh | sudo sh