Swabhav Techlabsswabhavtechlabs.hashnode.dev·Dec 4, 2023Demystifying Dependency Injection: Simplified with Real-World ExamplesIntroduction In the world of software development, there's a powerful concept called Dependency Injection (DI) that can make your coding life a lot easier. In this article, we'll demystify DI with real-world examples, making it simple to understand. ...Discussdependency injection
Mahmut Canblog.cifci.dev·Nov 16, 2023NodeJS ile Dependency InjectionNodeJS'de Dependency Injection (Bağımlılık Enjeksiyonu) konusunu ele almak istedim. Bu kavram, başta kafa karıştırıcı görünse de, aslında çok faydalı ve güçlü bir araçtır. Dependency Injection Nedir? Kısaca açıklamak gerekirse, Dependency Injection, ...Discuss·41 readsdependency injection
Slawomir Moriakslamcode.hashnode.dev·Nov 15, 2023Dependency Injection in React is a losing gameWhy the DI options in React do not pass the CATE test? What imperfect solution is possible? And can it make React development easier and more fun? A little bit of bias I come from an object-oriented .Net and C# environment, where the use of Dependenc...DiscussReact
Sudi Davidsudi.dev·Nov 14, 2023Adding Entity Framework Core and SQLiteBuilding upon our introduction to Minimal APIs, let's proceed to the next level by incorporating a data source to store and retrieve recipe information. We'll be using SQLite as our database and Entity Framework Core to interact with it. To get start...Discuss·1 likeefcore
Nicholas Guantainicholasguantai.com·Oct 25, 2023Angular Dependency Injection: A Beginner’s GuideIf you’ve made your way to this article, you’ve likely heard of Angular, Google’s popular framework for building web applications. One challenging but critical topic that you’ll inevitably encounter as you delve deeper into Angular is Dependency Inje...DiscussAngular
Slawomir Moriakslamcode.hashnode.dev·Oct 25, 2023.Net DI gotchas, tips and tricksCompiled some interesting facts about the way .Net dependency injection works behind the scenes. Some you probably already know, others you never bothered about. Knowing some may save you head-scratching in the future and others you may simply find u...Discussdotnet
Emran Khandaker Evanblog.evanemran.info·Oct 22, 2023Exploring Dependency Injection in Android with Dagger 2Dependency Injection (DI) is a crucial concept in software development that aids in achieving better code maintainability, testability, and scalability. When it comes to Android app development, Dagger 2 is a popular framework used to implement DI ef...Discuss·59 readsAndroidAndroid
Milan Jovanovićmilanjovanovic.hashnode.dev·Oct 14, 2023Improving ASP.NET Core Dependency Injection With ScrutorDependency injection (DI) is one of the most exciting features of ASP.NET Core. It helps us build more testable and maintainable applications. However, ASP.NET Core's built-in DI system sometimes needs a little help to achieve more advanced scenarios...Discuss·54 readsasp.net core
Romman Sabbirrommansabbir.com·Oct 11, 2023Mastering Hilt - Android | Kotlin | Hilt (Dagger 2) [Part 10]Migration from Dagger to Hilt Migrating from Dagger to Hilt is a straightforward process, as Hilt is built on top of Dagger and designed to simplify the dependency injection setup in Android apps. Here's a step-by-step guide on how to migrate from Da...Discuss·81 readsDependency Injection w/ Hiltandroid app development
Romman Sabbirrommansabbir.com·Oct 11, 2023Mastering Hilt - Android | Kotlin | Hilt (Dagger 2) [Part 9]Testing with Hilt Testing with @UninstallModules Testing with @UninstallModules Testing with Hilt involves using different approaches to manage dependencies and test components effectively. Here are two techniques for testing with Hilt: Testing w...Discuss·109 readsDependency Injection w/ HiltAndroid