koa-stylish
v0.1.1
Published
Stylus middleware for koa that doesn't write files to disk.
Downloads
2
Readme
koa-stylish
Stylus middleware for Koa. It is koa wrapper for node-stylish.
Installation
$ npm install koa-stylish
Examples
Simple stylus.middleware()
replacement:
app.use(stylish(__dirname + '/public'))
Extended example with autoprefixer:
var stylus = require('koa-stylish');
var autoprefixer = require('autoprefixer-stylus');
app.use(stylus({
src: __dirname + '/public',
setup: function(renderer) {
return renderer.use(autoprefixer());
},
}));