[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/)以在保存时格式化/美化您的代码。
*****
![](https://box.kancloud.cn/228a02ad83e481c6e256d037d2d0e96c_349x195.png)
1. 开发环境
2. 生产环境
*****