Setup

We use Gulp to automate the build flow. Gulp handles repetitive tasks like compiling, bundling, and live reloading. Learn more here. Follow the steps below to install all prerequisites:

Prerequisites

  • Node.js

    Download and install the latest LTS version of Node.js.

    Download Node.js
  • Gulp & Gulp CLI

    Install Gulp globally if not already available: npm install -g gulp@4.0.1

  • Package Manager

    You can use any of the following:

    • NPM: Comes bundled with Node.js (no extra install required)
    • Yarn: npm i -g yarn     or     sudo npm i -g yarn (for linux)
    • Bun: npm i -g bun     or     sudo npm i -g bun (for linux)
  • Git

    Install Git if not already available on your system.

Installation

Open terminal, navigate to your project folder, and install dependencies: yarn install (or use npm i/bun i as per your package manager).

Use the following commands to start or build the project:

Command Description
gulp Runs the "vertical" demo locally at http://localhost:3000/ with live reload.
gulp build Compiles and bundles assets for production.
gulp rtl Runs the RTL version locally with live reload.
gulp rtlBuild Compiles and bundles assets for production (RTL version).
Troubleshooting
  • Error: ENOENT: no such file or directory, scandir '.../node_modules/node-sass/vendor'

    Fix:

    • Run npm rebuild node-sass
    • Or delete node_modules and run npm install again
Have questions or issues during setup? Contact us — we’ll be happy to help.
© 2015 - UBold By Coderthemes