Is there any way to use multiple view engines with Express + Node.js

  1. Add both engines and consolidate.js in your package.json
  2. In yourapp.js

    var engines = require(‘consolidate’);

    app.engine(‘jade’, engines.jade);

    app.engine(‘handlebars’, engines.handlebars);

More info here

Leave a Comment