Skip to content

Instantly share code, notes, and snippets.

@A
Created July 5, 2014 23:50
Show Gist options
  • Save A/4e39d657510acd18416d to your computer and use it in GitHub Desktop.
Save A/4e39d657510acd18416d to your computer and use it in GitHub Desktop.
var stylus = require('stylus');
var send = require('koa-send');
exports.get = function *(next) {
this.root = process.cwd() + '/app';
yield stylus
.middleware(this.root)
.bind(null, this.req, this.res);
yield next;
yield send(this, this.path, {root: this.root});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment