I working on web application using web api but i can't determine which
frond end tool i will use React or angular 11
my application i use it have more pictures
so which is best for performance and speed when handling large amount of data and milion of rows
Brahma Prakash ShuklaPosted Oct 19, 2022, 8:04 AM
Please see this link.
It will be more useful for you.
https://radixweb.com/blog/react-vs-angular
Rajanikant HawaldarPosted Oct 7, 2022, 5:00 AM
the difference between then is not as much as the speed but how big is your application and how is the architecture
angular is a framework and you have to use it from start to end, react is more granular
both have events and stuff
Uday DodiyaPosted Oct 7, 2022, 4:48 AM
React JS is using a virtual DOM implementation, which means it doesn't have to update all the HTML. It is just looking for the differences between the current and the old HTML and updating it accordingly. That means that React apps load much faster than Angular apps.