Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
vishsid73119ystuck as in long process of evaluating. still unclear which one to with. Any recommendations?
-
coder2279yReact is pretty cool. React Native also seems really powerful for native mobile apps which might be a good reason to really learn React.
-
coder2279yCool, please let me know what you think. I'm thinking of using it for some more projects but would like to hear some more experiences.
-
justnik219ywhat are your requirements for the project? angular and react hardly cater to the same type of projects (if you want to use them correctly)
-
vishsid73119yproject is information intensive pretty much like data and file management system. add,edit, delete n views
-
justnik219yif you have a lot of forms I'd go for angular. that's pretty much what is was built for
-
justnik219yregardless of version I'd with typescript. if you then apply a proper component style upgrading to 2 shouldn't be too hard
-
ejwill2799yI think this video https://youtube.com/watch/... will help code in 1 so it's easier to go to 2 when the time comes
-
dfox428269yAwesome discussion! I'll say it before it gets pointed out - our handling of links in rants/comments is very bad right now and we're working to improve it quickly. Sorry about that.
-
ejwill2799yInstead of copying the link just search "refactoring to components by tero parviaenen" it's a angular Berlin video
-
chrizzle7278yReact:
Because the separation of components is nice and clean
Markup is less fussy
Updates to the DOM are diffed before being applied, making would be DOM operations lightning fast.
The above allows you to basically re-render all child components on state change for extremely low cost. The upshot being that you can have a unidirectional flow of data (no model binding), which makes it much easier to write more complex pages.
</preach>
Related Rants
Stuck between choosing Angualrjs or React for the next project. Have not used React before though.
undefined
js
react
angularjs