common-bem
BEM class name generator which use common scheme. Elements are delimited with two (2) underscores (__), and Modifiers are delimited by two (2) hyphens (--).
Install
npm install --save common-bem
Usage
By common scheme I mean scheme with double underscores and hyphens proposed by Harry Roberts in his article "MindBEMding – getting your head ’round BEM syntax". You can read more about BEM on getbem.com.
import commonBem from 'common-bem';
const bem = commonBem.lock('grid');
bem();
bem('row');
bem('col');
bem({ fixed: true });
bem('col', { size: 'md' });
API
Basically, this package is b_ with predefined options for this scheme.
License
MIT © Vladimir Starkov