Download

Get started and download pre-compiled assets or start your own custom build with npm.



Compiled CSS and JS

Download ready-to-use compiled assets for Frontbx to easily drop into your project.

Download


Source files

Compile Frontbx with your own asset pipeline by downloading the latest release.

Download Source

After downloading, navigate to your project directory and run the following command:

npm install frontbx

Next head through to the Contents Page to familiarize yourself with Frontbx's source files, then see the Installation Page for details on how to get started running your own build.


npm

To get started with Frontbx via npm, ensure you have node.js installed. Then navigate to your project directory and run the following command:

npm install frontbx

Frontbx JS can then be imported via CJS or ES6 with the following:

// cjs
const frontbx = require('frontbx');

// ES6
import frontbx from 'frontbx';

Next head through to the Contents Page to familiarize yourself with Frontbx's source files, then see the Installation Page for details on how to get started running your own build.


Git

Clone or fork the Frontbx framework with Git to create your own project. To clone the Frontbx repository cd to your project folder and run the following command:

git clone https://github.com/frontbx/ui.git ./

Alternatively, if you'd prefer to fork the Frontbx Github repository.

  1. On Github, create a fork of the frontbx/ui repository.
  2. Clone your fork to your local machine using Github Desktop or Git.
  3. Using terminal, navigate to your fork's directory.
  4. Add a second remote to the original Frontbx repository.
git remote add upstream https://github.com/frontbx/ui.git

Your fork can then be easily be updated when a new version is released using the following command:

git fetch upstream
git checkout master
git merge upstream/master

Next head through to the Contents Page to familiarize yourself with Frontbx's source files, then see the Installation Page for details on how to get started running your own build.

After downloading, navigate to your project directory and run the following command:

npm install frontbx