Linux server quick uninstall and install node environment (easy to get started)

Linux server quick uninstall and install node environment (easy to get started)

1. Uninstall npm first

sudo npm uninstall npm -g

2. Uninstall node

yum remove nodejs npm -y

See if there is any residue

Go to /usr/local/lib and delete all node and node_modules folders

Go to /usr/local/include and delete all node and node_modules folders

Enter /usr/local/bin and delete the executable file of node

3. Install node

download:

 wget https://cdn.npm.taobao.org/dist/node/v12.13.1/node-v12.13.1-linux-x64.tar.xz

Unzip:

 xz -d node-v12.13.1-linux-x64.tar.xz
 tar -xvf node-v12.13.1-linux-x64.tar

Move to the local directory:

mv node-v12.13.1-linux-x64 /usr/local/

Rename:

mv /usr/local/node-v12.13.1-linux-x64/ /usr/local/node

Add environment configuration:

vim /etc/profile

Add the following content to the end of the file:

export NODE_HOME=/usr/local/node
export PATH=$NODE_HOME/bin:$PATH

Execute source to make the environment variables effective immediately.

source /etc/profile

Check the version and complete the installation as follows.

node -v

Can output version information, that is, ok

npm -v

Can output version information, that is, ok

This is the end of this article about how to quickly uninstall and install the node environment on a Linux server (easy to get started). For more information about how to uninstall and install node on Linux, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to solve the problem that Linux cannot install and uninstall Node.js normally

<<:  MySQL column to row conversion, method of merging fields (must read)

>>:  How to deal with too many Docker logs causing the disk to fill up

Recommend

Parameters to make iframe transparent

<iframe src="./ads_top_tian.html" all...

Tutorial on installing MySQL 8.0.11 using RPM on Linux (CentOS7)

Table of contents 1. Installation preparation 1. ...

Detailed explanation of reduce fold unfold usage in JS

Table of contents fold (reduce) Using for...of Us...

CentOS 7 method to modify the gateway and configure the IP example

When installing the centos7 version, choose to co...

CSS3 achieves conic-gradient effect

grammar: background-image: conic-gradient(from an...

Process parsing of reserved word instructions in Dockerfile

Table of contents 1. What is Dockerfile? 2. Analy...

MySQL storage engine basics

In the previous article, we talked about MySQL tr...

HTML table markup tutorial (43): VALIGN attribute of the table header

In the vertical direction, you can set the alignm...

Two ways to completely delete users under Linux

Linux Operation Experimental environment: Centos7...

CSS animation property usage and example code (transition/transform/animation)

During development, a good user interface will al...

Version numbers in css and js links in HTML (refresh cache)

background Search the keyword .htaccess cache in ...

TinyEditor is a simple and easy-to-use HTML WYSIWYG editor

A few days ago, I introduced to you a domestic xh...

How to use mysqladmin to get the current TPS and QPS of a MySQL instance

mysqladmin is an official mysql client program th...