npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@hexa-it/bem-modules

v1.0.0

Published

Integrate BEM seamlessly with CSS Modules

Downloads

6

Readme

bem-modules

bem-modules is a lightweight JavaScript library that provides a simple and efficient way to integrate BEM (Block Element Modifier) naming conventions with CSS Modules. This library allows you to write modular, scalable and reusable CSS code for your web applications.

Installation

You can install bem-modules using npm, yarn or pnpm:

npm install @hexa-it/bem-modules
yarn add @hexa-it/bem-modules
pnpm add @hexa-it/bem-modules

Usage

To use bem-modules in your project, first import it into your JavaScript or TypeScript file:

import bem from "@hexa-it/bem-modules";

Then, assuming you have support for CSS Modules, create a stylesheet:

/* button.css */

.button {
  background-color: black;
  color: white;
}

.button--active {
  background-color: white;
  color: black;
}

.button__icon {
  width: 16px;
  height: 16px;
}

.button__icon--big {
  width: 32px;
  height: 32px;
}

In this example, button, button--transparent and button__title are BEM blocks, modifiers and elements, respectively.

Next, import your stylesheet

import styles from "./button.css";

And call the bem function with the styles object to generate a set of functions that you can use to create BEM class names

const { button } = bem(styles);

The button function can be used to generate class names for the button block:

const buttonClass = button(); // "button_zjdl25"

You can also use the button function to generate class names for elements and modifiers:

const buttonModifierClass = button({ transparent: true }); // "button_zjdl25 button--transparent_9o0dv6"
const buttonIconClass = button("icon"); // "button__icon_zhji5n"
const buttonIconModifierClass = button("icon", { big: true }); // "button__icon_zhji5n button__icon--big_lpxm57"

SASS

Usage with SASS, this will help keeping your stylesheets clean and concise

/* button.scss */

.button {
  background-color: black;
  color: white;

  &--active {
    background-color: white;
    color: black;
  }

  &__icon {
    width: 16px;
    height: 16px;

    &--big {
      width: 32px;
      height: 32px;
    }
  }
}

React component (Next.js)

// Button.tsx

import bem from "@hexa-it/bem-modules";
import styles from "./Button.module.scss";

const cn = bem(styles);

interface ButtonProps {
  icon: ReactNode;
  children: ReactNode;
  active?: boolean;
  bigIcon?: boolean;
}

export default function Button({
  icon,
  children,
  active,
  bigIcon,
}: ButtonProps) {
  return (
    <button className={cn.text({ color: "red" })}>
      <span className={cn.button("icon", { big: bigIcon })}>{icon}</span>
      <p>{children}</p>
    </button>
  );
}

React layout (Next.js)

// page.tsx

import bem from "@hexa-it/bem-modules";
import styles from "./Home.module.scss";

const cn = bem(styles);

export default function Home({ children }: { children: ReactNode }) {
  return (
    <>
      <header className={cn.header()}>
        <nav className={cn.header("nav")}>
          <a href="/">Home</a>
          <a href="/about">About</a>
          <a href="/contact">Contact</a>
        </nav>
      </header>
      <main className={cn.main()}>{children}</main>
      <footer className={cn.footer()}>
        <p className={cn.footer("copyright")}>
          © Pink Floyd FTW - All rights reserved
        </p>
      </footer>
    </>
  );
}
/* Home.module.scss */

.header {
  height: 64px;
  background-color: black;

  &__nav {
    padding: 16px;
    background-color: white;
  }
}

.main {
  padding: 32px;
}

.footer {
  height: 48px;
  background-color: black;

  &__copyright {
    color: white;
    font-weight: bold;
  }
}

Svelte

<script>
	import bem from "@hexa-it/bem-modules"
	import styles from "./styles.module.scss";

	const cn = bem(styles);
</script>

<p class={cn.text({ color: "red" })}>My red text</p>
<p class={cn.text({ color: "blue" })}>My blue text</p>

API

bem(styles: Styles): Record<string, ElementFunction>

The bem function takes a styles object as its parameter and returns an object that contains a set of functions.

Parameters

  • styles (required): A Styles object that defines the CSS modules for the BEM blocks, elements and modifiers.

Return value

An object that contains a set of functions. Each function can be used to generate BEM class names for the blocks, elements and modifiers defined in the styles object.

The returned object is an object that contains the names of BEM blocks as its keys, and functions that can be used to generate BEM class names (ElementFunction) as its values.

ElementFunction

Each function takes two optional parameters:

  • elementOrModifiers: A string or an object that represents the BEM element or a set of modifiers for the block.
  • modifiers: An object that represents a set of modifiers for the element. If it is not provided, the function uses the modifiers from elementOrModifiers.

Return value

The function returns a string that represents the BEM class name for the specified block, element or modifier.

Throws

If the name of a BEM block is not found in the styles object, the function throws an undefined error.