[Solved] What is the best practice in Angular 8 to consume data from service?

The answer as to how to handle data between components in Angular is: use a service https://angular.io/guide/architecture-services The angular team maintains as really good tutorial called Tour of heroes, where they provide developers with a great intro to the angular architecture and its main data workflows. I specially recommend people to finish the last chapter, … Read more

[Solved] downsides of using Ivy in Angular?

Bundle sizes may be larger than without Ivy and strict template type checking may give you some problems. Those issues should be resolved in 9.0.0 final. The RC is coming soon and is worth testing out. -Michael Prentice (Angular Team) Please look at the comments below from Michael himself 🙂 3 solved downsides of using … Read more