Table des matières

Installation Node.js sur Debian

Lien : https://nodejs.org/en/download/package-manager/

Installation

# apt update && apt-get upgrade
# apt install curl
# curl -sL https://deb.nodesource.com/setup_7.x | bash -
# apt install -y nodejs
# nodejs -v
# nodejs
>console.log("Hello World !");
Hello World !
undefined

Retour