Skip to content

Latest commit

 

History

History
132 lines (100 loc) · 4.19 KB

README.md

File metadata and controls

132 lines (100 loc) · 4.19 KB

Create Nuxt App

NPM version NPM downloads GitHub Action

Create a Nuxt.js project in seconds

Preview

preview

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 <my-project>

Or with yarn:

yarn create nuxt-app <my-project>

Features 🎉

  1. Choose the package manager
    • Yarn
    • Npm
  2. Choose programming language
    • JavaScript
    • TypeScript
  3. Choose your favorite UI framework:
  4. Choose the runtime for TypeScript (if you choose TypeScript)
  5. Choose Nuxt.js modules:
  6. Choose linting tools:
  7. Check the features needed for your project:
  8. Choose your favorite test framework:
  9. Choose rendering mode
  10. Choose target
  11. Choose development tools

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