1

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?

user1966211
  • 873
  • 3
  • 11
  • 22

2 Answers2

1

Take a look at meteor-angular-stack or ng-meteor. Should be what you're looking for.

mcveat
  • 1,416
  • 15
  • 34
0

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('}]}');
});

AngularJS-Twig conflict with double curly braces

Community
  • 1
  • 1
Flavien Volken
  • 19,196
  • 12
  • 100
  • 133