DEV Community

Cover image for Instalación Node en Linux Ubuntu 20
Manuel Ortega Carcamo for 4GeeksAcademy

Posted on

2 3

Instalación Node en Linux Ubuntu 20

Guía de instalación

Abrir una terminal y ejecutar los siguientes pasos:

Actualizar los paquetes disponibles y sus versiones.

sudo apt update
Enter fullscreen mode Exit fullscreen mode

Instalar Node.js

sudo apt install nodejs
Enter fullscreen mode Exit fullscreen mode

Verificar la versión de Node.js instalada

node -v

v10.19.0
Enter fullscreen mode Exit fullscreen mode

Instalar npm

sudo apt install npm
Enter fullscreen mode Exit fullscreen mode

Verificar la versión de npm instalada

npm -v

6.14.4
Enter fullscreen mode Exit fullscreen mode

Crear una App de Reactjs de ejemplo

npx create-react-app test

cd test

npm run start
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay