[TOC]
### 安裝官方模板
為了快速入門,Nuxt.js團隊創建了腳手架工具[create-nuxt-app](https://github.com/nuxt/create-nuxt-app)。
確保安裝了npx(npx在NPM版本5.2.0默認安裝了):
```
npx create-nuxt-app [項目名稱]
```
它會讓你進行一些選擇:
1. 在集成的服務器端框架之間進行選擇:
* None (Nuxt默認服務器)
* [Express](https://github.com/expressjs/express)
* [Koa](https://github.com/koajs/koa)
* [Hapi](https://github.com/hapijs/hapi)
* [Feathers](https://github.com/feathersjs/feathers)
* [Micro](https://github.com/zeit/micro)
* [Adonis](https://github.com/adonisjs/adonis-framework)(WIP)
2. 選擇您喜歡的UI框架:
* None (無)
* [Bootstrap](https://github.com/bootstrap-vue/bootstrap-vue)
* [Vuetify](https://github.com/vuetifyjs/vuetify)
* [Bulma](https://github.com/jgthms/bulma)
* [Tailwind](https://github.com/tailwindcss/tailwindcss)
* [Element UI](https://github.com/ElemeFE/element)
* [Ant Design Vue](https://github.com/vueComponent/ant-design-vue)
* [Buefy](https://buefy.github.io/)
3. 選擇您最喜歡的測試框架:
* None (feel free to add one later)
* [Jest](https://github.com/facebook/jest)
* [AVA](https://github.com/avajs/ava)
4. 選擇你想要的Nuxt模式 (`Universal`or`SPA`)
5. 添加[axios module](https://github.com/nuxt-community/axios-module)以輕松地將HTTP請求發送到您的應用程序中。
6. 添加[EsLint](https://eslint.org/)以在保存時代碼規范和錯誤檢查您的代碼。
7. 添加[Prettier](https://prettier.io/)以在保存時格式化/美化您的代碼。
*****

1. 開發環境
2. 生產環境
*****