One line of command to get node.js version upgrade

Node has a module called n (the name can be short enough...), which is specially used to manage the version of node.js.

First install the n module:

?
1
npm install -g n

Step 2:

Upgrade node.js to the latest stable version

?
1
n stable

Is not it simple? !

The version number can also be followed by n, for example:

?
1
n v0.10.26

or

?
1
n 0.10.26

It's that simple, how can this be done? ? ! !

In addition, share a few common commands of npm

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
npm -v          #显示版本,检查npm 是否正确安装。
 
npm install express   #安装express模块
 
npm install -g express  #全局安装express模块
 
npm list         #列出已安装模块
 
npm show express     #显示模块详情
 
npm update        #升级当前目录下的项目的所有模块
 
npm update express    #升级当前目录下的项目的指定模块
 
npm update -g express  #升级全局安装的express模块
 
npm uninstall express  #删除指定的模块

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326832104&siteId=291194637