Quick Start

1. Requirements

Prior to advancement, it is imperative that you possess the most recent stable version of node.js

Recommended environment:
  • node js 18+
  • npm js 8+

2. Install

To initiate the process, access the package folder and proceed to install its dependencies. We recommend utilizing either Yarn or npm for this task.

1) Install with npm:
                        
cd project-folder/package/demos
npm install
                        
                    
2) Install with yarn:
                        
cd project-folder/package/demos
yarn install
                        
                    

3. Start

Gulp serves as a versatile, cross-platform streaming task runner, facilitating the automation of numerous development tasks for developers. To globally install Gulp, the following steps are required:

                        
npm install --global gulp-cli
                        
                    

Execute the gulp command within the package/demos/ directory to serve the project files through BrowserSync. Running the gulp task will compile the theme and automatically open the /index.html file in your default web browser.

                        
gulp
                        
                    

4. Build

To build a project use below command. It'll generate dist folder , that dist folder you can upload on site.

                      
gulp build