https://github.com/patrickmarabeas/interfacing-react-components-with-angular-applications
An article written for Backstop Media
https://github.com/patrickmarabeas/interfacing-react-components-with-angular-applications
Last synced: 6 months ago
JSON representation
An article written for Backstop Media
- Host: GitHub
- URL: https://github.com/patrickmarabeas/interfacing-react-components-with-angular-applications
- Owner: patrickmarabeas
- Created: 2014-09-08T13:04:58.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-08T13:29:54.000Z (almost 12 years ago)
- Last Synced: 2023-05-23T14:55:13.779Z (about 3 years ago)
- Homepage: https://www.packtpub.com/books/content/interfacing-react-components-angular-applications
- Size: 382 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Interfacing React Components with Angular Applications
There's been talk lately of using React as the view within Angular's MVC architecture. Angular, as we all know, uses dirty checking. As I'll touch on later, it accepts the fact of (minor) performance loss to gain the great 2 way data binding it has. React, on the other hand, uses a virtual DOM and only renders the difference. This results in very fast performance.
So, how do we leverage React's performance from our Angular application? Can we retain 2 way data flow? And just how significant is the performance increase?
The nrg module and demo code can be found [over on my GitHub](https://github.com/patrickmarabeas/nrg.js).