mariosant-cn

0.0.3 • Public • Published

Cn

Easy class names handling!

NPM version CircleCI

Cn is a simple utility to help you manage class names in the modern app development ecosystem.

Installation

Just add @mariosant/cn to your package.json.

$ npm install @mariosant/cn

# or
$ yarn add @mariosant/cn

You can now import the module and use it like

import cn from "@mariosant/cn";

Usage

Using cn is pretty simple. It is inspired by the well known Classnames package, but solves a few edge cases.

import cn from '@mariosant/cn';

const isActive = true;
const SomeComponent = () => <Button className={cn('btn', [isActive, 'active', 'inactive'])} .../>

Development

Easy enough! No build required.

$ yarn install  # to install dependencies
$ yarn test     # to run the test suite

Meta

Marios Antonoudiou – @marios_antmariosant@sent.com

Distributed under the MIT license.

https://github.com/mariosant/cn

Contributing

  1. Fork it (https://github.com/mariosant/cn/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes using a semantic commit message.
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

Readme

Keywords

none

Package Sidebar

Install

npm i mariosant-cn

Weekly Downloads

1

Version

0.0.3

License

MIT*

Unpacked Size

7.24 kB

Total Files

13

Last publish

Collaborators

  • mariosant