Socket
Book a DemoInstallSign in
Socket

bem-utils

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bem-utils

Sugar for writing BEM-style classNames and CSS

0.4.1
latest
Source
npmnpm
Version published
Weekly downloads
4
-50%
Maintainers
2
Weekly downloads
 
Created
Source

npm version build status dependency status devdependency status Coverage Status

BEM Utils

Table of Contents

Installation

npm install bem-utils

bem-utils adds some sugar to writing out BEM-style classNames and CSS through the use of tagged template strings. BEM is great for your codebase, but it's hard to read and annoying to write. This module attempts to make both of the aforementioned actually kind of fun :)

Getting Started

Start by importing the module and setting the block for the classNames or cssText you want to generate. bem-utils has two main methods -- classNames(...) and css(...):

import BEM from 'bem-utils'
const BLOCK = 'Button'
let { classNames: cx, css } = BEM(BLOCK)

classNames

Basic

Blocks and Elements

The @ symbol can be used to produce Block+Element classNames:

cx`@`
// -> Button

cx`@content`
// -> Button__content

cx`@content/text`
// -> Button__content__text
Modifiers

You may include any number of comma-separated modifiers following a trailing whitespace:

cx`@ default`
// -> Button--default

cx`@ big, active`
// -> Button--big Button--active

cx`@content dark outlined`
// -> Button__content--dark--outlined

cx`@content/text large, purple`
// -> Button__content__text--large Button__content__text--purple

Advanced

Blocks and Elements

When +@ is used at the start of the classString, the block+element className will always be printed in addition to modifier classNames:

cx`+@ default`
// -> Button Button--default

cx`+@content dark outlined`
// -> Button__content Button__content--dark--outlined

cx`+@content/text large, purple`
// -> Button__content__text Button__content__text--large Button__content__text--purple
Modifiers

If the leading +@ or @ is omitted, modifiers will be applied to the block:

cx`default`
// -> Button--default

cx`big, active`
// -> Button--big Button--active

cx`big, active, dark outlined`
// -> Button--big Button--active Button--dark--outlined

CSS

css`

.default ${`
  color: #000;
`}

.default .content .icon.pink ${`
  color: #fff;
  background: pink;
  border-radius: 4px 8px;
`}

.default.big span .text:hover .purple ${`
  color: purple;
  text-align: center;
  text-decoration: none;
`}

`

The code above outputs the following css:

.Button--default {
  color: #000;
}

.Button--default .Button__content .Button__content__icon--pink {
  color: #fff;
  background: pink;
  border-radius: 4px 8px;
}

.Button--default--big span .Button__text:hover .Button__text__purple {
  color: purple;
  text-align: center;
  text-decoration: none;
}

Keywords

BEM

FAQs

Package last updated on 17 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.