learn-nuxt-ts

Initialise project

Create a NuxtJS project as usual (Nuxt doc):

yarn create nuxt-app {your project name}

For the sake of the tutorial, my nuxt-ts project is bare metal: no plugins, no CSS framework, default server framework, no test framework. I selected Yarn as my package manager.

Project creation

The Nuxt project structure is explained in Nuxt doc:

Project structure

Run the scaffold project:

cd {your project folder}
yarn dev

Nuxt should not encounter any error:

Project run

And the application is available on http://localhost:3000:

Project is working