Create a new Nuxt project, module, layer or start from a theme with our collection of starters.
The Nuxt Starter Templates allow users to quickly get started with a minimal Nuxt starter template. By using the nuxi CLI, users can easily clone the latest template to an empty directory.
npx nuxi init nuxt-app
npx nuxi init my-module -t module
npx nuxi init my-module -t module-devtools
npx nuxi init -t layer
npx nuxi init content-app -t content
npx nuxi init doc-driven-app -t doc-driven
npx nuxi init nuxt-bridge-app -t v2-bridge
npx nuxi init nuxt2-app -t v2
To get started quickly, head over to the nuxt.new website. You can use the nuxi CLI to clone the latest template to an empty directory by running the following command:
npx nuxi init [template-name]
Replace [template-name]
with the desired template from the above mentioned templates. For example, to clone the Nuxt 3 template, the command would be:
npx nuxi init nuxt-app
Note: Each template is maintained in a branch on nuxi. To contribute improvements, open a Pull Request to the relevant branch. Make sure to avoid committing lock-files such as yarn.lock and package-lock.json to template branches.
The Nuxt Starter Templates provide a convenient way for users to quickly set up a Nuxt project using various pre-configured templates. By using the nuxi CLI, users can clone the desired template to an empty directory and start developing their Nuxt application efficiently. With a variety of templates available, users can choose the one that best suits their project requirements.