Skip to content
Luigi Moraes edited this page Jul 5, 2024 · 6 revisions

Bacuri - Custom Framework

What is this? πŸ€”

Bacuri is a framework focused on Semantic HTML customizable with a plugin system. It is divided by two complementary parts:

  1. The Seed: is an amount of Sass classes that customizes basic things and sets a color scheme. Some classes are meant to be used for a specific HTML tag, and some are for generic purposes.
  2. The Pulp: is the plugin system, designed to expand the framework capabilities. As the name suggests, it revolves the pit with more customizations.

Quick Start πŸš€

You can download using the Node.js package manager of your choice. For example:

  • NPM
$ npm install bacuri
  • Yarn
$ yarn add bacuri

Styling with

Import the basic stylish by adding the following line to your main Sass file:

@import "node_modules/bacuri/dist/seed.css";

Expanding it

After the download finishes, you will need to create the files for plugin management. The system is already installed in your machine, so just run the following:

$ pulp -i

And for install any plugin, just run this command:

$ pulp -a author/plugin-name

This is it? 😞

Of course not.

  • Read the Seed section if you want to know which tags are currently stylized.
  • See the Pulp section for a better understading of the plugin system
  • And if you are interested in create your own plugin, the Plugin Creation section have a tutorial for you.

Thanks for reading!

Clone this wiki locally