Categories
angularjs front-end

Angular.js Interpolation while using Express and Handlebars

You may run into an angular rendering issue if your stack includes Node+Express and you are using Handlebars as your template engine. The main issue is that handlebars and angular share the same symbols {{ }} to render or do data binding.  The fix that I found useful was using $interpolateProvider from angular. The sample code […]