Generate CSS from JSON without any additional dependencies:
- Supports at-rules like
media queries
- Supports pseudo selectors like
:hover
,:focus
,:before
, etc. - Supports selectors by tag, class and id (e.g.:
body,
,.components
,#component
) - Supports vendor prefixes like
-webkit-transition
,display: -moz-box
, etc. - Can be used for server side rendering
- Converts camel case property names to hyphen notation
- No dependencies
- Tiny (2kb, about 860bytes uglified and gzipped)
- Usage
- Basic Example
- API Description
- Configuration
- Stylesheet Config
- Tag Selector
- Id Selector
- Vendor Prefixes
- Flexible Stylesheet
npm install --save stylebuddy
import stylebuddy from 'stylebuddy';
const desktop = '@media screen and (min-width:720px)';
const input = {
component: {
background: '#ccc',
':hover': {
background: '#777'
},
[desktop]: {
fontSize: 20,
':hover': {
background: '#333'
}
}
}
};
const styleSheet = stylebuddy.create();
const styles = styleSheet.add(input);
const css = styleSheet.render();
// ._component_2513881194{background:#ccc;}.component_2513881194:hover ...
const styleNode = document.createElement('style');
document.head.appendChild(styleNode);
styleNode.textContent = css;
console.log(styles.component);
// ._component_2513881194
Returns a new instance of the styleSheet API. The optional config merges with the default values and will be used for the current styleSheet instance.
Returns an object with the generated style identifiers. The passed config will be merged with the styleSheet config.
Returns the CSS string of the current styleSheet instance.
const DEFAULT_CONFIG = {
prefix: '.', // e.g.: enforce css classes
delimiter: '_',
salt: '',
hashSelector: false,
appendHash: true,
};
import stylebuddy from 'stylebuddy';
const styleSheetConfig = {
delimiter: '___',
appendHash: false
};
const styles = {
components: {
background: '#ccc'
}
};
const styleSheet = stylebuddy.create(styleSheetConfig);
styleSheet.add(styles);
const css = styleSheet.render();
// .___components{background:#ccc;}
import stylebuddy from 'stylebuddy';
const tagSelector = {
body: {
background: '#ccc'
}
};
const styleSheet = stylebuddy.create();
styleSheet.add(tagSelector, { delimiter: '', prefix: '', appendHash: false });
const css = styleSheet.render();
// body{background:#ccc;}
import stylebuddy from 'stylebuddy';
const idSelector = {
component: {
background: '#333'
}
};
const styleSheet = stylebuddy.create();
styleSheet.add(idSelector, { prefix: '#', appendHash: false });
const css = styleSheet.render();
// #_component{background:#333;}
import stylebuddy from 'stylebuddy';
const input = {
component: {
WebkitTransition: '200ms all linear',
display: ['-webkit-box', '-moz-box']
}
};
const styleSheet = stylebuddy.create();
const styles = styleSheet.add(input);
const css = styleSheet.render();
// ._component_2513881194{-webkit-transition:200ms all linear;display:-webkit-box;display:-moz-box;}
import stylebuddy from 'stylebuddy';
const tagSelectors = {
body: {
background: '#ccc'
}
};
const classSelectors = {
components: {
background: '#999'
}
};
const idSelectors = {
component: {
background: '#333'
}
};
const styleSheetConfig = {
appendHash: false
};
const styleSheet = stylebuddy.create(styleSheetConfig);
styleSheet.add(tagSelectors, { prefix: '', delimiter: '' });
styleSheet.add(classSelectors, { delimiter: '___' });
styleSheet.add(idSelectors, { prefix: '#' });
const css = styleSheet.render();
// body{background:#ccc;}.___components{background:#999;}#_component{background:#333;}
const styleNode = document.createElement('style');
document.head.appendChild(styleNode);
styleNode.textContent = css;