Nuxt.js is a production-ready Vue.js framework that also provides excellent developer experience. Itβs inspired by Next.js, hence the naming, and exists for a similar purpose as Next.js but does a few things differently.
Notable features of Nuxt.js:
- Auto-importing, where every file has access to every component, meaning you never have to import a component again.
- Automatic code splitting.
- Ships with pre-configured packages like Vuex, Vue Router and vue-meta.
- Gives you a standard folder structure with special purposes associated with each folder. For example, the
pages/
directory gives you filesystem routing where each of the.vue
files inside are mapped into web pages, similar to what Next.js does. - Nuxt.js uses Nitro, a server-side program that enables you to use SSG, use SSR, build APIs, deploy to the edge, etc. You can still opt for a pure SPA.
Setup
Nuxt.js has a create-vue-app
CLI that sets up everything.
Core Things to Know
This section contains a tl;dr of basic things to know to work with Nuxt.js projects.
Directory Structure
The basic directory structure is pretty similar to that of Next.js.