Q:

upgrade node version

//First, clear the npm cache:
	npm cache clean -f

//Install n, Node’s version manager:
	npm install -g n
    
//With the n module installed, you can use it to:
	Install the latest stable version: n stable
	Install the latest release: n latest
11
//check node version
>node -v
// let's install a program called n that will let us easily switch 
//between Node versions.
>npm install -g n
//Upgrading to the latest stable version
>n stable 
//Changing to a specific version
>n 10.16.0
4
npm cache clean -f

npm install -g n

install latest Node.js with npm n mmodule

Note:- With the n module installed, following you can use it to:
Install the latest stable version: n stable
Install the latest release: n latest
Install a specific version: n [version.number]
1

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash

update node

0
nvm install v12.16.2
-1

New to Communities?

Join the community