Best of Dependency Injection — April 2024
- 1
- 2
Community Picks·2y
Applying Clean Architecture in Go
Clean Architecture focuses on decoupling code and making it easier to make changes in the future. It separates the application into layers and focuses on the domain model. The implementation of the Blog project using Clean Architecture is described, and the benefits of using this approach are highlighted.
- 3
JavaScript in Plain English·2y
How Using Angular’s inject() Function Has Saved Me 1000 Lines of Code
The inject() function in Angular allows for cleaner and more readable code by injecting dependencies in a different way than using constructors. It also provides better inheritance capabilities and can lead to significant reduction in lines of code.
- 4
Code with Andrea·2y
Code Generation with Dart & Flutter: The Ultimate Guide
This post discusses code generation in Dart and Flutter, covering topics such as the code generation mechanism with build_runner, useful code-generating packages like json_serializable and injectable, efficient codebase maintenance techniques, and best practices for using code generation in projects.