node.js安装+卸载,npm+cnpm安装+卸载 vue安装+卸载
使用指令整理:
#获取node.js版本号(验证电脑是否安装)
node -v
#node.js官网地址
#https://nodejs.org/en/
#获取npm版本号(npm:Nodejs软件包管理工具)(验证电脑是否安装)
npm -v
#安装cnpm使用国内淘宝镜像
npm install –g cnpm –registry=https://registry.npmmirror.com
#获取cnpm版本号(一个完整 npmjs.org 镜像,可以用此代替官方版本)(验证电脑是否安装)
cnpm -v
#显示当前的镜像网址
npm get registry
#修改镜像网址(设定成自己喜欢的,一般为淘宝镜像https://registry.npmmirror.com)
npm config set registry https://registry.npmmirror.com
#安装vue
cnpm in