Skip to content

Installation

Prerequisite

Node

Make sure to have Node.js installed.

note

NPM (Node Package Manager) is included in Node.js installation since Node version 0.6.0., so there is no need to install it separately.

Verify Node.js Installation

Type the below-given command and run it in your terminal. The version of Node.js installed on your computer will be displayed if the installation is successful.

bash
 node -v

Yarn

We recommend you to use Yarn instead of NPM, If Yarn is already installed on your PC, skip this step.

bash
 npm i -g yarn

Getting started

  1. Download our template from the marketplace.

  2. Extract the file.

  3. Go to the project folder. You can confirm that you are in the correct directory by checking if it includes files such as package.json, .gitignore etc.

  4. Open terminal in that directory and run below commands to install all the required dependencies.

    bash
    # It will install all packages
    yarn
    
    # Will start the dev server
    yarn dev
    bash
    # It will install all packages
    npm install
    
    # Will start the dev server
    npm run dev
  5. Open the dev server URL in browser.

Generating build for production

  1. Build your application for host on server using below command:

    bash
    yarn build
    bash
    npm run build

COPYRIGHT