I need to use angularjs for my client side framework on my meteor application, so I won't be using handlebars. Is there a way to remove the package?
And if it's not possible, can handlebars work correctly side-by-side with angularjs?
I need to use angularjs for my client side framework on my meteor application, so I won't be using handlebars. Is there a way to remove the package?
And if it's not possible, can handlebars work correctly side-by-side with angularjs?
Take a look at meteor-angular-stack or ng-meteor. Should be what you're looking for.
You can redefine the Angular's delimiters. I don't know how to do so with meteor instead, they are not implementing the Mustache default way to change delimiters.
angular.module('myApp', []).config(function($interpolateProvider){
$interpolateProvider.startSymbol('{[{').endSymbol('}]}');
});