yarn
安装:官方文档
npm
安装 Node 即可:Node
一些命令:
npm list --depth=0 -g
: 参看当前已安装的依赖,加上-g
表示查询全局依赖npm install xxx -g
: 安装依赖npm uninstall xxx -g
: 删除依赖配置镜像源
``` npm config get registry # 查看源 npm config set registry=https://registry.npm.taobao.org # 设置源
yarn config get registry yarn config set registry ‘https://registry.npm.taobao.org‘
```
一些依赖
live-server
能实时刷新页面的小型开发服务器。
运行live-server
就可以生成一个当前目录的 HTTP 服务。更多问题请看文档
@vue/cli
Vue 官方脚手架。