Best Way to Include React-Bootstrap?

What’s the best way to include this npm package? https://react-bootstrap.github.io

I’ve searched Atmosphere and found the top result to be deprecated in favour of some browserify technique (I’ve never used browserify before). As of 1.2.1, what would be the best/easiest/simplest/most reliable way to include something like this into my React project?

2 Likes

I tend to use npm/browserify as it gives the most control over versions and doesn’t require the indirection of a package.

Check out this for how to set it up:
http://react-in-meteor.readthedocs.org/en/latest/client-npm/

I’ve been using this boilerplate project:

2 Likes

Thanks! These links are really helpful, I didn’t realize there was an officially recommended solution.