Nuxt.js is really easy to get started with. A simple project only need the
nuxtdependency.
To start quickly, the Nuxt.js team has created a starter template.
Download the .zip starter template or install it with vue-cli:
$ vue init nuxt/starter <project-name>If vue-cli is not installed, please install it with
npm install -g vue-cli
then install the dependencies:
$ cd <project-name>
$ npm installand launch the project with:
$ npm run devThe application is now running on http://localhost:3000
Nuxt.js will listen on the files changes inside the pages directory, so no need to restart the application when adding new pages
To discover more about the directory structure of the project: Directory Structure Documentation.
Creating a Nuxt.js application from scratch is also really easy, it only needs 1 file and 1 directory. Let's create an empty directory to start working on the application:
$ mkdir <project-name>
$ cd <project-name>Info: replace project-name by the name of the project.
The project needs a package.json file to specify how to start nuxt:
{
"name": "my-app",
"scripts": {
"dev": "nuxt"
}
}scripts will launch Nuxt.js via npm run dev.
nuxtOnce the package.json has been created, add nuxt to the project via NPM:
npm install --save nuxtpages directoryNuxt.js will transform every *.vue file inside the pages directory as a route for the application.
Create the pages directory:
$ mkdir pagesthen create the first page in pages/index.vue:
<template>
<h1>Hello world!</h1>
</template>and launch the project with:
$ npm run devThe application is now running on http://localhost:3000
Nuxt.js will listen on the files changes inside the pages directory, so no need to restart the application when adding new pages
To discover more about the directory structure of the project: Directory Structure Documentation.
Caught a mistake or want to contribute to the documentation? Edit this page on Github!