Instalación Node en Linux Ubuntu 20
Manuel Ortega Carcamo
Posted on March 23, 2021
Guía de instalación
Abrir una terminal y ejecutar los siguientes pasos:
Actualizar los paquetes disponibles y sus versiones.
sudo apt update
Instalar Node.js
sudo apt install nodejs
Verificar la versión de Node.js instalada
node -v
v10.19.0
Instalar npm
sudo apt install npm
Verificar la versión de npm instalada
npm -v
6.14.4
Crear una App de Reactjs de ejemplo
npx create-react-app test
cd test
npm run start
💖 💪 🙅 🚩
Manuel Ortega Carcamo
Posted on March 23, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
privacy Caught in the Crunch My Journey from Snacks to 2 Million Exposed Users Privacy
November 30, 2024
devchallenge Submission for the DevCycle Feature Flag Challenge: Feature Flag Funhouse
November 30, 2024