0.1.1 • Published 11 years ago
koa-stylish v0.1.1
koa-stylish
Stylus middleware for Koa. It is koa wrapper for node-stylish.
Installation
$ npm install koa-stylishExamples
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());
  },
}));