Vous êtes ici : Accueil / Debian GNU/Linux / Système / Logiciels / Installer node.js sur Debian

Installer node.js sur Debian

Par Pierre-Yves Landuré Dernière modification 02/03/2018 20:35

node.js est un framework Javascript coté serveur basé sur le moteur Javascript V8 de Google.

Ce guide est testé sur

  • Debian 9.0 Stretch

Installation

Détectez le proxy de commande (command ou sudo):

cmdProxy='command'
command type -f 'sudo' &>'/dev/null' && cmdProxy='sudo'

Installez sudo:

${cmdProxy} apt-get install sudo

Mettez en place le dépôt de Node.js:

command wget --quiet --output-document=- 'https://deb.nodesource.com/setup_8.x' \
| sudo -E bash -

Installez Node.js:

sudo apt-get install nodejs

Installation depuis les sources

Installez les logiciels nécessaires à la compilation:

command apt-get install python build-essential libssl-dev

Téléchargez les sources de la dernière version:

command wget 'https://raw.github.com/biapy/howto.biapy.com/master/various/sf-downloader' \
--quiet --no-check-certificate --output-document='/tmp/sf-downloader'
source="$(command bash '/tmp/sf-downloader' --generic='http://nodejs.org/' --tgz 'nodejs' 'node-VERSION.tar.gz')"

Placez-vous dans le dossier créé:

command pushd "${source}"

Installez l'outil:

./configure
command make
command make install

Quittez le dossier:

command popd

Effacez les fichiers téléchargés:

command rm -r "${source}"

Remerciements

  • Merci aux développeurs de node.js.