Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
classnames
Advanced tools
The classnames package is a simple utility for conditionally joining class names together. It is commonly used in React projects but can be used anywhere that requires dynamic class name computation.
String arguments
Combine multiple string arguments into one class name.
classnames('foo', 'bar'); // 'foo bar'
Object arguments
Use an object to include class names conditionally based on the truthiness of the object's values.
classnames({ 'foo': true, 'bar': false }); // 'foo'
Array arguments
Pass an array of class names which will be joined together.
classnames(['foo', 'bar']); // 'foo bar'
Mixed arguments
Combine string, object, and array arguments to form a class name string.
classnames('foo', { 'bar': true, 'duck': false }, ['baz', { 'quux': true }]); // 'foo bar baz quux'
clsx is a tiny utility for constructing className strings conditionally. It is similar to classnames but is smaller and faster, making it a popular alternative.
Emotion is a performant and flexible CSS-in-JS library. While it is more than a class name utility, it provides similar functionalities in terms of composing and applying class names conditionally.
A simple javascript utility for conditionally joining classNames together.
Install with npm or Bower.
npm install classnames
Use with node.js, browserify or webpack:
var 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.
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 of the key is falsy, it won't be included in the output.
classNames('foo', 'bar'); // => 'foo bar'
classNames('foo', { bar: true }); // => 'foo bar'
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:
var arr = ['b', { c: true, d: false }];
classNames('a', arr); // => 'a b c'
dedupe
versionThere 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.
For example:
classNames('foo', 'foo', 'bar'); // => 'foo bar'
classNames('foo', { foo: false, bar: true }); // => 'bar'
This version is slower (about 10x) so it is offered as an opt-in.
To use the dedupe version with node, browserify or webpack:
var classNames = require('classnames/dedupe');
Or for standalone (global / AMD) use, include dedupe.js
in a <script>
tag on your page.
classNames >=2.0.0
Array.isArray
: see MDN
for details about unsupported older browsers (e.g. <= IE8) and a simple polyfill.
v2.1.3 / 2015-07-02
FAQs
A simple utility for conditionally joining classNames together
The npm package classnames receives a total of 8,414,274 weekly downloads. As such, classnames popularity was classified as popular.
We found that classnames demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.