hazard
v0.2.1
Published
Producing UI with CSS in JavaScript
Downloads
3
Maintainers
Readme
Hazard
Producing UI with CSS in JavaScript! The next because-we-can thing :japanese_ogre:
Installation
npm i hazard
Simple usage
var hazard = require('hazard')();
var result = hazard.fromJSON({
header: {
padding: '10px'
}
});
console.log(result.css.text);
/*
.hd1{padding:10px;}
*/
console.log(result.html.text);
/*
<header class="hd1"></header>
*/