Skip to content

Instantly share code, notes, and snippets.

View Viri-Skull's full-sized avatar
:octocat:
Learning

Viri-Skull

:octocat:
Learning
View GitHub Profile
@jreyes
jreyes / node.sh
Created May 20, 2018 08:07
Instalar Node.js 10 en Ubuntu 18.04
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install nodejs
node -v
npm -v