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/