Create Nuxt3 apps with zero effort.
- Select UI frameworks and install it from list
- Install extra modules like '@nuxt/content'
- Install eslint easily
Make sure you have npx installed (npx
is shipped by default since npm 5.2.0
)
npx create-nuxt3 <project-name>
Or with yarn
yarn create nuxt3 <project-name>
Or with pnpm
pnpm dlx create-nuxt3 <project-name>
- Thanks to Uetchy for create-create-app package. I couldn't make it without that package.