1.0.0 • Published 10 years ago

connect-stylus v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

connect-stylus

Yet another connect/express middleware for Stylus. Don't ask me why.

Installation

This packages defines stylus as a peer dependency, that means you should install your preferred version of stylus yourself:

% npm install stylus connect-stylus

Usage

Use with your connect or express app like this:

var stylus = require('connect-stylus'),
    express = require('express');

var app = express();
app.get('/styles.css', stylus({
  entry: './public/styles.styl',
  use: ['nib', 'normalize']
}));

connect-stylus starts watching directory for changes unless you pass {watch: false} as an option.

If you want to configure Stylus rendering, you can pass a function which does that as configure option.