Create a Nuxt.js project in seconds
Make sure you have npx installed (npx
is shipped by default since npm 5.2.0
)
npx create-nuxt-app <my-project>
Or with yarn:
yarn create nuxt-app <my-project>
- Choose between integrated server-side frameworks:
- Choose your favorite UI framework:
- None (feel free to add one later)
- Bootstrap
- Vuetify
- Bulma
- Tailwind
- Element UI
- Ant Design Vue
- Buefy
- Add axios module to make HTTP request easily into your application.
- Add ESLint to Lint your code on save.
- Add Prettier to prettify your code on save.