Vue
查询你的node版本:
node -v
如果你的版本不够,可以使用下面的命令行来把Node版本更新到最新的稳定版:
npm install -g n // 安装模块 这个模块是专门用来管理node.js版本的
n stable // 更新你的node版本
//mac下,更新版本的时候,如果提示你权限不够:
sudo n stable // 我就遇到了
查询你的npm版本:
npm -v
查看镜像地址:
npm config get registry
由于有些npm资源被屏蔽或者是国外资源的原因,经常会导致npm安装依赖包的时候失败,所以我们还需要npm的国内镜像
如果使用的是默认的npm源(registry.npmjs.org),并且该源有问题,你可以尝试更换为其他可用的npm源
npm 官方原始镜像网址:https://registry.npmjs.org/
淘宝 NPM 镜像:
npm config set registry https://registry.npm.taobao.org // 以前
npm config set registry https://registry.npmmirror.com // 最新
阿里云 NPM 镜像:
npm config set registry https://npm.aliyun.com
腾讯云 NPM 镜像:
npm config set registry https://mirrors.cloud.tencent.com/npm/
华为云 NPM 镜像:
npm config set registry https://mirrors.huaweicloud.com/repository/npm/
网易 NPM 镜像:
npm config set registry https://mirrors.163.com/npm/
中科院大学开源镜像站:
npm config set registry http://mirrors.ustc.edu.cn/
清华大学开源镜像站:
npm config set registry https://mirrors.tuna.tsinghua.edu.cn/
// 腾讯,华为,阿里的镜像站基本上比较全
如果你事先已经全局安装了旧版本的vue-cli
(1.x 或 2.x),你需要先卸载它:
npm uninstall vue-cli -g
安装Vue CLI 脚手架
npm install -g @vue/cli
// 如果是mac电脑,需要在命令前面加sudo
sudo npm install -g @vue/cli
安装好后输入查看版本,确定是否安装成功
vue --version 或者 vue -V
安装扩展:
npm install -g @vue/cli-service-global
创建vue项目:
//在创建项目的地址栏,输入cmd回车
vue create vue-demo
清理npm缓存
清理npm缓存可能有助于解决问题。在命令行中执行以下命令清理缓存:
npm cache clean --force
更新npm
npm install -g npm@lasted
更新package.json中的依赖版本
npm update
使用list命令来查看我们的项目中已经安装了哪些依赖包
npm list
检查 npm
配置是否正确。你可以通过运行 npm config list
查看所有的配置项
npm config list
或
npm config ls -l