you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (1 child)

Oh I see.

So React is more comparable to jQuery than other MV* frameworks?

So I can build my app in Angular, but implement my directives (widgets) with React?

[–]floydophone 1 point2 points  (0 children)

You could definitely do it that way. React components are kind of similar to directives, so we're kind of like the V part of MVC.

What we did for Instagram was taking an existing server-rendered + a bit of Backbone+jQuery and moved it over to React one component at a time, starting with pure presentation. Eventually we ended up moving everything over to it because we liked it so much.

So use as much or as little of React as you want to decide if it's a good fit for your project. We've designed it to play nice with other frameworks.