Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

nuxt/create-nuxt-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b6facaf Â· Oct 19, 2020
Oct 2, 2020
Oct 19, 2020
Nov 22, 2017
Apr 12, 2020
May 18, 2020
Aug 4, 2017
Apr 12, 2020
May 18, 2020
Apr 27, 2020
Apr 27, 2020
May 18, 2020
Oct 6, 2020
Nov 9, 2017
Oct 7, 2020
Apr 12, 2020
Oct 6, 2020
Oct 6, 2020
Oct 6, 2020
Oct 6, 2020
Oct 19, 2020
Oct 6, 2020

Repository files navigation

create-nuxt-app

Create Nuxt App

NPM version NPM downloads GitHub Action

Create a Nuxt.js project in seconds

Usage

Make sure you have npx installed (npx is shipped by default since npm 5.2.0)

npx create-nuxt-app <my-project>

Or starting with npm v6.1 you can do:

npm init nuxt-app@latest <my-project>

Or with yarn:

yarn create nuxt-app <my-project>

Features 🎉

  1. Package manager
    • Yarn
    • Npm
  2. Programming language
    • JavaScript
    • TypeScript
  3. UI framework:
  4. Nuxt.js modules:
  5. Linting tools:
  6. Testing framework:
  7. Rendering mode
  8. Deployment target
  9. Development tools
  10. Continous Integration

CLI Options

--edge

Alias: -e.

To install nuxt-edge instead of nuxt, add the command line option --edge:

npx create-nuxt-app <my-project> --edge

Or

npm init nuxt-app <my-project> --edge

Or

yarn create nuxt-app <my-project> --edge

--info

Alias: -i. Print out debugging information relating to the local environment and exit.

--help

Alias: -h. Show the help information and exit, include: usage, command and all cli options.

--verbose

Show debug logs

--version

Alias: -v. Show version number and exit.

Credits