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:
Yarn
As well as npm to install and save in your package.json dependencies, run:
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:
Source files
Download and compile all BeeGrid source code. This option require some additional tools:
- NPM (Node Package Manager).
- Sass compiler.
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:
- Download and install Node.js, which we use to manage all our dependencies.
- Install Ruby and Bundler, and finally run
bundle install
. This install all ruby dependencies.
After doing this, with a terminal, go to the BeeGrid directory and run the following command:
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. |