macOS下node、npm安装和卸载方法

macOS下安装node、npm

brew install node

npm是随着nodejs安装一并安装的。 更新npm,可以用npm命令

npm install npm -g

npm 全局安装是安装在/usr/local/lib下 npm install -g xxx

npm 本地安装是安装在项目目录下 npm install xxx

macOS终端命令升级node

sudo npm cache clean -f //清除nodejs的cache:
sudo npm install -g n //使用npm安装n模块
npm view node versions // node所有版本
sudo n latest // 升级到最新版本
sudo n stable // 升级到稳定版本
sudo n xx.xx // 升级到具体版本号

macOS下彻底卸载node和npm

在homebrew安装的

使用命令 brew uninstall node

官网下载pkg安装包的使用下面命令

sudo rm -rf /usr/local/{bin/{node,npm},lib/node_modules/npm,lib/node,share/man/*/node.*}

你可能感兴趣的:(前端开发,npm,node.js)