Blogger Information
Blog 143
fans 1
comment 0
visits 440331
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
npm管理nodejs版本
弘德誉曦的博客
Original
3298 people have browsed it

   npm管理nodejs版本            

安装npm

全局安装版本管理器n

npm install -g n

通过n安装nodejs (stable 表示安装最新稳定版 根据下载源 安装需要的时间不同)

$ n stable

安装制定版本使用n 版本号,如n 8.11.2

注意如果从高版本降到低版本,高版本会被删除;低版本到高版本都会存在

如果之前安装的nodejs不是用n安装的,此时这两版本的nodejs必定不再同一个目录下,通过n安装的nodejs默认安装位置

/usr/local/n/versions/node

指定版本运行js (server.js为你的js文件)

n use 9.4.0 server.js

n  //查看当前已经安装的所有nodejs版本

n rm 9.4.0   //删除指定nodejs版本

 

设置nodejs环境变量,vim /etc/profile,在末尾添加以下二行:

export NODE_HOME=/usr/local/n/versions/node/9.4.0

export PATH=$NODE_HOME/bin:$PATH

在命令行输入:source /etc/profile,然后在命令行输入:node -v

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post