koa2 vue boilerplate
1.0.0
使用 koa2 和 vue 的管理应用程序模板。
这个样板克隆是用 vuejs-templates 构建的,基于 vue-element-admin
确保您的开发计算机上安装了 Node.js v6 或更高版本以及 npm。因为这样会更好
$ git clone https://github.com/Cherish-xzw/koa2-vue-boilerplate.git MyApp
$ cd MyApp
$ npm install # Install project dependencies listed in package.json
如果您只想在没有 koa2 样板提交历史记录的情况下启动一个新项目,那么您可以执行以下操作:
$ git clone --depth=1 https://github.com/Cherish-xzw/koa2-vue-boilerplate.git MyApp
深度 = 1 告诉 git 仅拉取一次提交的历史数据。
通过运行以下命令来编译并启动您的应用程序:
# Compiles the app and opens it in a browser with "hot reload"
# running at http://0.0.0.0:3000
$ npm run dev
# Open the backend API server
# running at http://0.0.0.0:4000
$ npm run server
或者一起启动前端和后端
# Start frontent and backend concurrently
$ npm start
一个build
脚本,用于将 JS、CSS 和图像与源映射捆绑在一起进行生产。
$ npm run build
release
脚本可以捆绑我们将代码发布到生产环境所需的一切。
$ npm run release
注意:此脚本只能在 *nix-like 命令行上运行。
无法安装node-sass?
将此行放入 ~/.npmrc 文件中并再次npm install
。
sass_binary_site=https://npm.taobao.org/mirrors/node-sass/
phantomjs_cdnurl=https://npm.taobao.org/mirrors/phantomjs/
electron_mirror=https://npm.taobao.org/mirrors/electron/