Skip to content

Instantly share code, notes, and snippets.

View sreevenkat's full-sized avatar

Sreevenkat sreevenkat

View GitHub Profile
@diegopacheco
diegopacheco / npm-nvm-nodejs-linux-debian-jessie.md
Created January 26, 2018 16:35
How to install NodeJs, NPM and NVM on Linux Debian 8 - Jessie
sudo apt-get update -y
sudo apt-get install build-essential libssl-dev -y
curl -sL https://deb.nodesource.com/setup_9.x| bash -
apt-get install -y nodejs
curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.32.0/install.sh -o install_nvm.sh
bash install_nvm.sh
source ~/.profile
nvm install 9.4.0
nvm use 9.4.0