Keen - The Ultimate Multi-Demo Bootstrap Admin Theme
logo Multi Demo Bootstrap Admin Dashboard Theme

Webpack Quick Start

The steps below for the Default Webpack Package. If you want to use the Gulp, go to this Gulp Quick Start section.

  1. Download the latest theme source from the marketplace.

  2. Download and install Node.js from nodejs.org/en/download/. The suggested version to install is 14.15.x LTS.

  3. Start command prompt window or terminal and change directory to [keen]/theme/tools/

    cd theme/tools
  4. Install the latest npm.

    npm install --global npm@latest
  5. Install yarn via the npm.

    npm install --global yarn

    Don't forget to run yarn upgrade after every Keen updates released in order to install newly added or updated 3rd-party plugins.
    Use npm cache clean --force command, if installation had failed at any step. Retry from start after it done.

  6. Install yarn dependencies. Must execute in [keen]/theme/tools/ folder.

    yarn
  7. This below command will compile all the assets(sass, js, media) to [keen]/theme/[demo]/dist/assets folder. State which demo to compile and append at the of the command. Eg. --demo1

    npm run build --demo1
  8. Start the localhost server.

    npm run localhost --demo1

    Keep the console open. Open this link to run http://localhost:8080/. It will take a few seconds for the build to finish.

    Press Ctrl+C to quit from localhost.

For more information about the Webpack build tool, click here.