connect-assets-emblem
v0.0.2
Published
Expose your Emblem views in the browser using connect-assets.
Downloads
3
Maintainers
Readme
connect-assets-emblem
Expose your emblem views to Ember in the browser using connect-assets
.
Forked and adapted from connect-assets-jade.
Installation (via npm)
$ npm install connect-assets-emblem
Usage
See example app in /example
directory.
Integration with connect-assets
is done like so:
var express = require('express')
, assets = require('connect-assets')
, emblemAssets = require('connect-assets-emblem') // <-- here
, PORT = 3000;
var app = express.createServer();
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'emblem');
app.set('view options', {layout: false});
app.use(assets({
jsCompilers: {
emblem: emblemAssets() // <-- and here
}
}));
app.use(app.router);
});
app.get('/', function(req, res){
res.render('home');
});
app.listen(PORT, function(){
console.log('Example app for connect-assets-emblem running on port %d.', PORT);
});
Credits
- Troy Goode for writing the original
connect-assets-jade
module for doing the same thing with jade templates.