Download

Download BeeGrid to get compiled CSS source code, or include it via npm or include its classes via CDN.

NPM

To install and save in your package.json dependencies, run:

 npm install @beetle/bee-grid

Yarn

As well as npm to install and save in your package.json dependencies, run:

 yarn add @beetle/bee-grid

Compiled CSS

Download ready-to-use compiled code BeeGrid v1.1.0 to easily drop into your project, which includes compiled and minified CSS bundles.

This package doesn’t include source files and documentation. Once downloaded, unzip the compressed folder and you’ll see something like this:

dist
 ├── css/
 │    ├── bee-grid.css
 │    ├── bee-grid.css.map
 │    ├── bee-grid.min.css
 │    └── bee-grid.min.css.map
 └── js/
      ├── navbar.js
      ├── navbar.js.map
      ├── navbar.min.js
      └── navbar.min.css.js

Download

Source files

Download and compile all BeeGrid source code. This option require some additional tools:

The package.json included in the source folder include some methods for working with the framework, including compiling code, running documentation and more.

To use the build system and run documentation locally, you’ll need to follow these instruction and should be ready:

After doing this, with a terminal, go to the BeeGrid directory and run the following command:

 npm install

This command install al the required dependencies for run some command, such as:

Task Description
npm run css npm run css compile, lints and minify all Sass files and put the compiled CSS files in /dist/css folder. This also run [Autoprefixer][https://github.com/postcss/autoprefixer] command that parse CSS and add vendor prefixes to rule.
npm run docs-serve Run the documentation locally at http://localhost:9001.
npm run build Build all CSS and JavaScript files and put them in dist folder.

Download source