froilanfroilanimnida.hashnode.dev·Oct 5, 2024Activity 23: Angular ServicesWhat is Angular Services?: You might need to use features from other classes when developing a smaller component of your system, such as a module or class. For example, in order to conduct backend calls, you could want an HTTP service. A design patte...Discuss·1 like·102 readsAngular
Mayursinh Parmarmayursinhdevblog.hashnode.dev·Sep 30, 2024Building a Real-Time Chat App in Android with Kotlin and Firebase: A Family-Friendly Guide Using Clean ArchitectureHello, devs Today, we’re creating a real-time chat application using Firebase in Kotlin and organizing our code with Clean Architecture. This guide will walk you through every step, from setting up Firebase to structuring your app with Clean Architec...DiscussAndroidAndroid
Guillaume Dormoygdsource.hashnode.dev·Sep 25, 2024FeaturedTSyringe and Dependency Injection in TypeScriptI am not a big fan of large frameworks like NestJS; I've always liked the freedom of building my software the way I want with the structure I decide in a lightweight way. But something I liked when testing NestJS out was the Dependency injection. Dep...Discuss·25 likes·99 readsTypeScript
Nishorgo Hasannishorgo.hashnode.dev·Sep 19, 2024Dependency Injection Made Easy to UnderstandIn software development, dependencies are like the ingredients in a recipe. Each ingredient serves a specific purpose, and without the right combination, your dish might not turn out the way you want it to. Imagine you're baking a cake. You need flou...DiscussPython
Shalon N. Ngiginjeri-ngigi.hashnode.dev·Sep 17, 2024Dependency injection in NestJSGetting started with nestjs An overview of nestjs - modules, controllers and providers Dependency injection in nestjs [you are here] Setting up a database - nestjs, postgresql and sequelize [WIP] What is Dependency Injection (DI)? Dependency inj...DiscussNestjs from scratchdependency injection
Shalon N. Ngiginjeri-ngigi.hashnode.dev·Sep 16, 2024Dependency Injection in JSWhat is Dependency Injection (DI)? DI is a programming pattern where dependencies are passed in as parameters instead of instantiation inside the function or class. Let’s take a look at an example of a class that uses another class to fetch data from...DiscussNestjs from scratchdependency injection
Opaluwa Emidowo-ojotech-on-diapers.hashnode.dev·Sep 6, 2024Advanced Dependency Injection Techniques in C#Welcome to today's technical tutorial! We're back again with another article on dependency injection. In our 6th article in the Mastering C# series, we discussed a comprehensive guide to dependency injection in C# but this time, we will be exploring ...Discuss·21 likesdependency injection
Nile Bitsnilebits.hashnode.dev·Sep 4, 2024Advanced Apex Techniques for Salesforce DevelopersAs Salesforce continues to dominate the Customer Relationship Management (CRM) space, the demand for highly skilled developers who can harness the power of Apex, Salesforce's proprietary programming language, is at an all-time high. Apex allows devel...DiscussSalesforce
Ujjwal Singhujjwal-ghatani-dev.hashnode.dev·Sep 3, 2024Mastering Inversion of Control (IoC) and Dependency Injection (DI) with Real-World Examples .Net CoreIntroduction In software development, managing dependencies between classes is crucial for building flexible, maintainable systems. Inversion of Control (IoC) and Dependency Injection (DI) are two key principles that help achieve this, allowing your ...DiscussInversionOfControl
Prasad Sawantprasadsawant7.hashnode.dev·Aug 29, 2024Beginner's Guide to Dependency Injection: Everything You Need to KnowWhat is Dependency? In object-oriented programming, a dependency is an object or component that another object or component relies on to function properly. For example, if Class A uses methods or properties of Class B, then Class A is dependent on Cl...Discussdependency injection