Install Node.js on CentOS Server

You can find latest version of Node.js at

https://nodejs.org/en/

To install Node.js on CentOS 7/8

Add node.js repository

NodeJS 12.x

curl -sL https://rpm.nodesource.com/setup_12.x | bash -

NodeJS 11.x

curl -sL https://rpm.nodesource.com/setup_11.x | bash -

NodeJS 10.x

curl -sL https://rpm.nodesource.com/setup_10.x | bash -

NodeJS 8.x

curl -sL https://rpm.nodesource.com/setup_8.x | bash -

NodeJS 6.x

curl -sL https://rpm.nodesource.com/setup_6.x | bash -

Install node.js with

yum -y install nodejs

For npm to install native modules, install dev tools

yum install gcc-c++ make

Or

yum groupinstall 'Development Tools'

See Node.Js

Need help with Linux Server or WordPress? We can help!

Leave a Reply

Your email address will not be published. Required fields are marked *