小麻雀前端项目, 使用 vue-template 作为基础模板
# 安装 nodejs 运行环境, nodejs 版本为 8.11.3 LTS
https://nodejs.org/en/
# clone 本项目
git clone https://github.com/roojay520/sparrow.git
# 进入项目目录
cd sparrow
# 安装开发依赖, 第一次安装可能有点缓慢
npm install #or yarn install
# 本地开发环境预览 localhost:4399
npm run dev #or yarn run dev
# 压缩打包
npm run build #or yarn run build
# 项目打包文件分析 analyze
npm run analyze #or yarn run analyze
# eslint 代码检查
npm run lint #or yarn run lint