connect-assets-emblem

0.0.2 • Public • Published

connect-assets-emblem

Expose your emblem views to Ember in the browser using connect-assets.

Forked and adapted from connect-assets-jade.

Build Status

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.

License

MIT License

Author

Visnu Pitiyanuvath

Package Sidebar

Install

npm i connect-assets-emblem

Weekly Downloads

1

Version

0.0.2

License

MIT

Last publish

Collaborators

  • visnup