Main Starter Kit Installation     

Using the Main Starter Kit is the recommended way to go in order to benefit from all Quasar can do for it. You’ll be able to build:

First, we install Quasar CLI. Make sure you have Node >=8 and NPM >=5 installed on your machine.

# Node.js >= 8.9.0 is required.
$ npm install -g quasar-cli

Then we create a project folder with Quasar CLI:

$ quasar init <folder_name>

Note that you don’t need separate starter kits if you want to build any of the options described above. This one can seamlessly handle all of them.

Make sure you familiarize yourself with the Quasar CLI because you will be using it a lot.

What’s Included

While developing with Dev Server ($ quasar dev):

Developing for production ($ quasar build):

Take note of the ‘/quasar.conf.js’ file in the root of your project folder. This file helps you quickly configure the way your website/App works. We’ll go over it in the Configuration section.