sassy-beam

A Sass mixin to deal with a “BEM-like” notation and a simplified HTML markup

Usage no npm install needed!

<script type="module">
  import sassyBeam from 'https://cdn.skypack.dev/sassy-beam';
</script>

README

〒 Sassy Beam

A Sass mixin to deal with a “BEM-like” notation and a simplified HTML markup

stability-stable NPM version License Build Status Commitizen friendly Conventional Commits

Beam (or sassy-beam) allows the use of a BEM-like notation but with a lighter HTML markup.

It is a combo based on BEM, Nicolas Gallagher's thoughs and Harry Roberts's adaptations … while adding my personal touch!

The Sassy Beam goals

  1. Using a BEM method like .block__element--modifier

  2. Keeping a light HTML markup!

    <div class="block block--mod1 block--mod2 block--mod3">
    

    becomes:

    <div class="block--mod1--mod2--mod3">
    
  3. Maintaining the integrity of class names (no dynamic concatenation [#{$block}__element] nor nesting [&__element])

  4. Allowing nesting for readability … or not!

Installation

via npm

npm install sassy-beam

Usage

.html

<div class="foo">
  <div class="foo__baz"></div>
  <div class="foo__baz--qux--quux"></div>
</div>
<div class="foo--bar"></div>

.scss

@import 'sassy-beam';

@include beam('foo') {
  property: value;
}

@include beam('foo--bar') {
  property: value;
}

@include beam('foo__baz') {
  property: value;
}

@include beam('foo__baz--qux--quux') {
  property: value;
}

.css (output)

.foo, [class*="foo--"] {
  property: value;
}
[class*="foo--"][class*="--bar"] {
  property: value;
}
.foo__baz, [class*="foo__baz--"] {
  property: value;
}
[class*="foo__baz--"][class*="--qux"][class*="--quux"] {
  property: value;
}

Extra


Feel free to improve, comment, share, …