Library that is built on top of Stylus preprocessor and provides a couple of useful mixins, utilities and functions.
If you never used Stylus before you should give it a try, because together with Dookie it will amazingly simplify the routine...
At first install package via npm:
npm install dookie-css
And then, please, tell Stylus that you want to use Dookie:
stylus(str)
.use(dookie.css())
.render(function (err, css) {
if (err) throw err;
// css is flavored with dookie already :)
});
Full documentation is available at github repository
Project is in beta yet so suggestions and collaboration are highly appreciated!