
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-concat-classname
Advanced tools
A light-weight, zero-dependent className builder for React.
npm:
npm i react-concat-classnames
Yarn:
yarn add react-concat-classnames
pnpm:
pnpm add react-concat-classnames
This library supports both global class names and CSS modules.
The default export, concat will concatenate truthy strings only.
import concat from "react-concat-classnames";
const variant = "filled";
const color = "blue";
const size = null;
concat("button", "variant-" + variant, "color-" + color); // "button variant-filled color-blue"
concat("avatar", size, "round"); // "avatar round" (size was omitted because it was null)
concatModule will map all of its arguments to a style object, then filter for truthy strings.
import { concatModule } from "react-concat-classnames";
import styles from "./styles.module.css";
// The styles object may look like this:
const styles = {
// Button styles
"button": "myButton",
"variant-filled": "buttonFilled",
"color-blue": "buttonBlue",
// Avatar styles
"avatar": "myAvatar",
"round": "avatarRound"
};
const variant = "filled";
const color = "blue";
const size = null;
concatModule(styles, "button", "variant-" + variant, "color-" + color); // "myButton buttonFilled buttonBlue"
concatModule(styles, "avatar", size, "round"); // "myAvatar avatarRounded"
Additionally, you may "bake" a style object into concatModule:
import { buildConcatModule } from "react-concat-classnames";
import styles from "./styles.module.css";
const className = buildConcatModule(styles);
// ... variables ...
className("button", "variant-" + variant, "color-" + color); // "myButton buttonFilled buttonBlue"
className("avatar", size, "round"); // "myAvatar avatarRounded"
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to https://unlicense.org/
FAQs
A light-weight, zero-dependent className builder for React.
The npm package react-concat-classname receives a total of 0 weekly downloads. As such, react-concat-classname popularity was classified as not popular.
We found that react-concat-classname demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.