n 是node 的版本管理工具。 首行 n 的安装, npm install n -g , 这个需要进行全局安装,这样就可以使用 n 这个命令。
### 清除一下缓存
npm cache clean -f
### 全局安装 n
npm install n -g
### node 升级到新的稳定版本
n stable
#n stable
#installed : v12.19.0 (with npm 6.14.8)
### node 升级到新的版本
n latest
#n latest
#installed : v14.13.1 (with npm 6.14.8)
需要注意的地方,路径。
ls /usr/local/n/versions/node/
12.19.0 14.13.1
使用方法,输入n
如果安装了多个版本的node ,可以通过 n 命令直接选择。
帮助信息
n --help
Usage: n [options] [COMMAND] [args]
Commands:
n Display downloaded node versions and install selection
n latest Install the latest node release (downloading if necessary)
n lts Install the latest LTS node release (downloading if necessary)
n <version> Install node <version> (downloading if necessary)
n run <version> [args ...] Execute downloaded node <version> with [args ...]
n which <version> Output path for downloaded node <version>
n exec <vers> <cmd> [args...] Execute command with modified PATH, so downloaded node <version> and npm first
n rm <version ...> Remove the given downloaded version(s)
n prune Remove all downloaded versions except the installed version
n --latest Output the latest node version available
n --lts Output the latest LTS node version available
n ls Output downloaded versions
n ls-remote [version] Output matching versions available for download
n uninstall Remove the installed node and npm