Derby plugin to add Stylus support
npm install derby-stylusRight after creating your Derby app, add:
``js`
// Add Stylus support
app.serverUse(module, 'derby-stylus');
Make sure this is before any calls to app.loadStyles().
After that you can use .styl files instead of .css
index.js
`js
var derby = require('derby');
var app = module.exports = derby.createApp('example', __filename);
// Add Stylus support (before loadStyles)
app.serverUse(module, 'derby-stylus');
app.loadViews (__dirname);
app.loadStyles(__dirname);
app.get('/', function(page, model) {
page.render();
});
`
index.html
`html`
Hello world
index.styl
`stylus``
body
padding 0
margin 0