Appearance
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
Download our template from the marketplace.
Extract the file.
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.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
Open the dev server URL in browser.
Generating build for production
Build your application for host on server using below command:
bashyarn build
bashnpm run build