Reputation: 95
I'm looking for the quickest way to integrate Meteor.js with Angular.js and Bootstrap.js. I've seen Urigo:Angular but seems there is no quick integration with Bootstrap. Any advise about it? Thank you ny
Upvotes: 4
Views: 1328
Reputation: 3185
If you are just using the Bootstrap's CSS, Ethaan's answer is a complete one.
But if you want to use also the JS, you should also use libraries like ui-bootstrap or AngularStrap
Also here, angular-meteor is agnostic to those and you can add both exactly like you would with any other AngularJS application.
You have 3 options of including those libraries into your Meteor application:
Upvotes: 2
Reputation: 11376
Just add it using meteor add
try with
meteor add bootstrap
or
meteor add twbs:bootstrap
take a look into atmosphere bootstrap search
Upvotes: 3