Ask HN: AWS Uses Angular.js with React

3 points by tuhinkarmakar ↗ HN
It seems the AWS API Gateway console is built using Angular.js + React. Why would anyone do this?

https://twitter.com/tuhinkarmakartk/status/1128724672634187776?s=09

4 comments

[ 25.1 ms ] story [ 565 ms ] thread
In 2015 my team had Backbone, Angular, and React in a single app for a period of time. We merged two separate applications (Backbone and React) from two separate teams into a single application. We gradually moved the application over to entirely React over the course of about 7 months. not that uncommon.
Angular 1.x has this dreadful thing called digest cycle. Long and short of it, the rendering performance degrades proportionally with the number of things Angular has to watch for changes.

Some people retrofitted busier parts of their apps with react views to work around that. There are even a frw angular directives for that out there.

At my previous job we started out with Angular in 2017. After some time passed benefits of using React was clear to everyone in the team. We wrote new features in React. The old Angular code worked as expected. It made little sense to spend time porting that to React.