Skip to content

kantele/k-stylus

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Derby plugin to add Stylus support

Usage

Right after creating your Derby app, add:

// 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

Example

index.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

<Body:>
  <h1>Hello world</h1>

index.styl

body
  padding 0
  margin 0

About

Derby plugin to add stylus support

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 90.9%
  • HTML 5.1%
  • CSS 4.0%