使用yarn替代npm构建vue项目

1、yarn的安装

安装Chocolatey,用管理员运行模式运行powershell,粘贴以下命令即可:

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

则可以在控制台中运行下面的命令安装 yarn:

choco install yarn

这将确保你安装了 Node.js。

2、构建vue项目

yarn
//说明:yarn是yarn install的简写,可直接敲击yarn,功能和npm install一样
//最后运行项目
yarn run dev
//浏览器会自动打开运行一个页面,出现以下页面,说明成功了。

你可能感兴趣的:(#,vue学习专栏)