Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

classnames

JedWatson44.5mMIT2.5.1TypeScript support: included

A simple utility for conditionally joining classNames together

react, css, classes, classname, classnames, util, utility

readme

Classnames

A simple JavaScript utility for conditionally joining classNames together.

Install from the npm registry with your package manager:

npm install classnames

Use with Node.js, Browserify, or webpack:

const classNames = require('classnames');
classNames('foo', 'bar'); // => 'foo bar'

Alternatively, you can simply include index.js on your page with a standalone <script> tag and it will export a global classNames method, or define the module if you are using RequireJS.

Project philosophy

We take the stability and performance of this package seriously, because it is run millions of times a day in browsers all around the world. Updates are thoroughly reviewed for performance implications before being released, and we have a comprehensive test suite.

Classnames follows the SemVer standard for versioning.

There is also a Changelog.

Usage

The classNames function takes any number of arguments which can be a string or object. The argument 'foo' is short for { foo: true }. If the value associated with a given key is falsy, that key won't be included in the output.

classNames('foo', 'bar'); // => 'foo bar'
classNames('foo', { bar: true }); // => 'foo bar'
classNames({ 'foo-bar': true }); // => 'foo-bar'
classNames({ 'foo-bar': false }); // => ''
classNames({ foo: true }, { bar: true }); // => 'foo bar'
classNames({ foo: true, bar: true }); // => 'foo bar'

// lots of arguments of various types
classNames('foo', { bar: true, duck: false }, 'baz', { quux: true }); // => 'foo bar baz quux'

// other falsy values are just ignored
classNames(null, false, 'bar', undefined, 0, 1, { baz: null }, ''); // => 'bar 1'

Arrays will be recursively flattened as per the rules above:

const arr = ['b', { c: true, d: false }];
classNames('a', arr); // => 'a b c'

Dynamic class names with ES2015

If you're in an environment that supports computed keys (available in ES2015 and Babel) you can use dynamic class names:

let buttonType = 'primary';
classNames({ [`btn-${buttonType}`]: true });

Usage with React.js

This package is the official replacement for classSet, which was originally shipped in the React.js Addons bundle.

One of its primary use cases is to make dynamic and conditional className props simpler to work with (especially more so than conditional string manipulation). So where you may have the following code to generate a className prop for a <button> in React:

import React, { useState } from 'react';

export default function Button (props) {
    const [isPressed, setIsPressed] = useState(false);
    const [isHovered, setIsHovered] = useState(false);

    let btnClass = 'btn';
    if (isPressed) btnClass += ' btn-pressed';
    else if (isHovered) btnClass += ' btn-over';

    return (
        <button
            className={btnClass}
            onMouseDown={() => setIsPressed(true)}
            onMouseUp={() => setIsPressed(false)}
            onMouseEnter={() => setIsHovered(true)}
            onMouseLeave={() => setIsHovered(false)}
        >
            {props.label}
        </button>
    );
}

You can express the conditional classes more simply as an object:

import React, { useState } from 'react';
import classNames from 'classnames';

export default function Button (props) {
    const [isPressed, setIsPressed] = useState(false);
    const [isHovered, setIsHovered] = useState(false);

    const btnClass = classNames({
        btn: true,
        'btn-pressed': isPressed,
        'btn-over': !isPressed && isHovered,
    });

    return (
        <button
            className={btnClass}
            onMouseDown={() => setIsPressed(true)}
            onMouseUp={() => setIsPressed(false)}
            onMouseEnter={() => setIsHovered(true)}
            onMouseLeave={() => setIsHovered(false)}
        >
            {props.label}
        </button>
    );
}

Because you can mix together object, array and string arguments, supporting optional className props is also simpler as only truthy arguments get included in the result:

const btnClass = classNames('btn', this.props.className, {
    'btn-pressed': isPressed,
    'btn-over': !isPressed && isHovered,
});

Alternate dedupe version

There is an alternate version of classNames available which correctly dedupes classes and ensures that falsy classes specified in later arguments are excluded from the result set.

This version is slower (about 5x) so it is offered as an opt-in.

To use the dedupe version with Node.js, Browserify, or webpack:

const classNames = require('classnames/dedupe');

classNames('foo', 'foo', 'bar'); // => 'foo bar'
classNames('foo', { foo: false, bar: true }); // => 'bar'

For standalone (global / AMD) use, include dedupe.js in a <script> tag on your page.

Alternate bind version (for css-modules)

If you are using css-modules, or a similar approach to abstract class 'names' and the real className values that are actually output to the DOM, you may want to use the bind variant.

Note that in ES2015 environments, it may be better to use the "dynamic class names" approach documented above.

const classNames = require('classnames/bind');

const styles = {
    foo: 'abc',
    bar: 'def',
    baz: 'xyz',
};

const cx = classNames.bind(styles);

const className = cx('foo', ['bar'], { baz: true }); // => 'abc def xyz'

Real-world example:

/* components/submit-button.js */
import { useState } from 'react';
import classNames from 'classnames/bind';
import styles from './submit-button.css';

const cx = classNames.bind(styles);

export default function SubmitButton ({ store, form }) {
  const [submissionInProgress, setSubmissionInProgress] = useState(store.submissionInProgress);
  const [errorOccurred, setErrorOccurred] = useState(store.errorOccurred);
  const [valid, setValid] = useState(form.valid);

  const text = submissionInProgress ? 'Processing...' : 'Submit';
  const className = cx({
    base: true,
    inProgress: submissionInProgress,
    error: errorOccurred,
    disabled: valid,
  });

  return <button className={className}>{text}</button>;
}

Polyfills needed to support older browsers

classNames >=2.0.0

Array.isArray: see MDN for details about unsupported older browsers (e.g. <= IE8) and a simple polyfill.

LICENSE MIT

Copyright (c) 2018 Jed Watson. Copyright of the Typescript bindings are respective of each contributor listed in the definition file.

changelog

Changelog

v2.5.1 / 2023-12-29

  • Remove workspaces field from package (#350)

v2.5.0 / 2023-12-27

  • Restore ability to pass a TypeScript interface (#341)
  • Add exports field to package (#342)

v2.4.0 / 2023-12-26

  • Use string concatenation to increase performance thanks Jon Koops (#336)

v2.3.3 / 2023-12-21

v2.3.2 / 2022-09-13

v2.3.1 / 2021-04-03

  • Fix bind/dedupe TypeScript types exports
  • Fix mapping Value types, thanks Remco Haszing
  • Removed non-existent named exports from types, thanks Remco Haszing

v2.3.0 / 2021-04-01

  • Added TypeScript types
  • Added consistent support for custom .toString() methods on arguments, thanks Stanislav Titenko

v2.2.6 / 2018-06-08

  • Fixed compatibility issue with usage in an es module environment

v2.2.5 / 2016-05-02

  • Improved performance of dedupe variant even further, thanks Andres Suarez

v2.2.4 / 2016-04-25

v2.2.3 / 2016-01-05

  • Updated bind variant to use [].join(' ') as per the main script in 2.2.2

v2.2.2 / 2016-01-04

  • Switched from string concatenation to [].join(' ') for a slight performance gain in the main function.

v2.2.1 / 2015-11-26

  • Add deps parameter to the AMD module, fixes an issue using the Dojo loader, thanks Chris Jordan

v2.2.0 / 2015-10-18

v2.1.5 / 2015-09-30

  • reverted a new usage of Object.keys in dedupe.js that slipped through in the last release

v2.1.4 / 2015-09-30

  • new case added to benchmarks
  • safer hasOwnProperty check
  • AMD module is now named, so you can do the following:
define(["classnames"], function (classNames) {
  var style = classNames("foo", "bar");
  // ...
});

v2.1.3 / 2015-07-02

  • updated UMD wrapper to support AMD and CommonJS on the same pacge

v2.1.2 / 2015-05-28

  • added a proper UMD wrapper

v2.1.1 / 2015-05-06

  • minor performance improvement thanks to type caching
  • improved benchmarking and results output

v2.1.0 / 2015-05-05

  • added alternate dedupe version of classNames, which is slower (10x) but ensures that if a class is added then overridden by a falsy value in a subsequent argument, it is excluded from the result.

v2.0.0 / 2015-05-03

  • performance improvement; switched to Array.isArray for type detection, which is much faster in modern browsers. A polyfill is now required for IE8 support, see the Readme for details.

v1.2.2 / 2015-04-28

  • license comment updates to simiplify certain build scenarios

v1.2.1 / 2015-04-22

  • added safe exporting for requireJS usage
  • clarified Bower usage and instructions

v1.2.0 / 2015-03-17

  • added comprehensive support for array arguments, including nested arrays
  • simplified code slightly

Previous

Please see the git history for the details of previous versions.