GNU/Linux >> Linux Esercitazione >  >> Cent OS

Come installare Node.js e NPM su CentOS

Introduzione

Node.js è un runtime JavaScript basato sul motore JavaScript V8 di Chrome. Node.js utilizza un modello I/O non bloccante basato su eventi che lo rende leggero ed efficiente. Ecosistema di pacchetti di Node.js, npm , è il più grande ecosistema di librerie open source al mondo. In questo articolo spiegheremo i passaggi per installare node.js e npm in CentOS.

Fase 1:aggiungi il repository node.js yum

Per prima cosa dobbiamo aggiungere yum repository di node.js al nostro sistema che proviene dal sito Web ufficiale di nodejs. Esegui i seguenti comandi in successione per aggiungere il repository yum.

# yum install -y gcc-c++ make
# curl -sL https://rpm.nodesource.com/setup_6.x | sudo -E bash -

Fase 2:installa node.js e NPM

Ora è il momento di installare il pacchetto node.js e il pacchetto NPM. Esegui il comando seguente per farlo. Questo singolo comando installerà node.js, npm e anche altri pacchetti dipendenti.

# yum install nodejs

Fase 3:verifica le versioni

Dopo aver installato i pacchetti, è necessario verificarne le versioni.

Per controllare la versione di node.js:

# node -v 
v6.9.4

Per controllare la versione npm:

# npm -v 
3.10.10

Fase 4:verifica dell'installazione

Puoi testare la tua installazione creando un file di prova, ad esempio test_server.js

# vim test_server.js

Quindi aggiungi il seguente contenuto nel file.

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Welcome');
}).listen(3001, "127.0.0.1");
console.log('Server running at http://127.0.0.1:3001/');

Ora avvia il server web usando il comando seguente

# node --debug test_server.js

debugger listening on port 5858
Server running at http://127.0.0.1:3001/

È stato avviato il server Web a cui è possibile accedere utilizzando l'URL http://127.0.0.1:3001/ nel tuo browser.


Cent OS
  1. Come installare Node.js e NPM su Mac

  2. Come installare Node.js e NPM su Ubuntu 18.04 e 20.04

  3. Come installare Node.js e NPM su Windows

  4. Come installare Node.js e npm su Debian 11

  5. Come installare Node.js e npm su Ubuntu 20.04

Come installare Node.js e Npm in Ubuntu?

Come installare Node.js su CentOS 8

Come installare Node.js su CentOS 7

Come installare ReactJS su CentOS 8

Come installare Node.js su CentOS Stream 9

Come installare Node.js e Npm su Ubuntu 22.04