Quick Start

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

  • node js 18+
  • npm js 8+

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

                                    
cd project-folder/package/demos
npm install
                                    
                                
                                    
cd project-folder/package/demos
yarn install
                                        
                                    

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
                                        
                                    

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


gulp build