Horje
centos upgrade nodejs Code Example
update nodejs centos
$ curl -sL https://rpm.nodesource.com/setup_12.x | bash -
sudo yum install nodejs
centos upgrade nodejs
# If you don't have an existing version:
sudo yum install nodejs


# If you have installed:
# Option 1
curl -sL https://rpm.nodesource.com/setup_16.x | bash -
sudo yum install nodejs

# Option 2 (I have issues sometimes with Option 1)
wget http://nodejs.org/dist/v16.14.2/node-v16.14.2.tar.gz
tar xzvf node-v* && cd node-v*
sudo yum install gcc gcc-c++
./configure
make
sudo make install




Shell

Related
powershell get-childitem exclude node_modules Code Example powershell get-childitem exclude node_modules Code Example
linux exploit database search commad Code Example linux exploit database search commad Code Example
check file sytem linux Code Example check file sytem linux Code Example
check default shell in terminal Code Example check default shell in terminal Code Example
powershell convert string to int Code Example powershell convert string to int Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9