Darshit Anjariadarshitanjaria.hashnode.dev·Dec 10, 2024Why response.json() Needs await: Simplify Asynchronous JavaScriptWhen working with fetch API in JavaScript, you often encounter the need to use the await keyword when calling response.json(). This can be puzzling to newcomers, as response.json() looks like a simple function call, but it’s actually asynchronous. Le...JavaScript
Isaiah Clifford OpokuforfreeCodeCampfreecodecamp.org·Dec 2, 2024How to Create a Minimal API in .NET Core – A Step By Step HandbookMinimal APIs are an exciting feature introduced in .NET 6, designed to revolutionize how you create APIs. Imagine building robust APIs with minimal code and zero boilerplate—no more wrestling with controllers, routing, or middleware. That’s what mini...dotnet
Bhupendrabhuppi.hashnode.dev·Oct 23, 2024How asynchronous code is executed in JavaScriptIn JavaScript, asynchronous code is handled using the event loop, which allows non-blocking execution. JavaScript is single-threaded, meaning it can only perform one task at a time. However, it can handle asynchronous tasks efficiently without blocki...JavaScript
Anjan BaradwajforfreeCodeCampfreecodecamp.org·Oct 7, 2024How to Design and Develop Web APIs: Essential Guidelines for DevelopersSoftware applications have made our lives easier and better in many ways. We use them almost daily, and some people find themselves using applications more frequently than they interact with other people. But how do applications interact with each ot...APIs
Opaluwa Emidowo-ojotech-on-diapers.hashnode.dev·Aug 30, 2024Implementing Microservices Architecture with ASP.NET Core Web APIsHello! Have you ever wondered what a microservice architecture is or how to use Web APIs for microservices? Don’t worry—you're in the right place! Think of a microservices architecture as a big machine made up of many small, specialized parts. Each p...20 likesMicroservices
Opaluwa Emidowo-ojotech-on-diapers.hashnode.dev·Aug 26, 2024Implementing Resilience Patterns in ASP.NET Core Web APIs: Circuit Breaker, Retry, and Timeout PoliciesWelcome back! We have a brand-new technical tutorial today. Still discussing Web APIs, we are going to learn how to implement resilience in our APIs. Web APIs often interact with other services or databases, and sometimes, things can go wrong—like a ...20 likesTimeout policies
Mohtasim Ahmedeftythoughts.hashnode.dev·Aug 25, 2024Asynchronous Javascript - Callbacks, Promises, Async-Await | (A detailed overview)First of all, we need to know about Asynchronous Javascript and Synchronous Javascript. Javascript is a single-threaded programming language. In simple words, JavaScript can do one thing at a time. And javascript runs codes step by step (one after an...synchronous
Opaluwa Emidowo-ojotech-on-diapers.hashnode.dev·Aug 16, 2024Monitoring and Logging in ASP.NET Core Web APIs: Using Application Insights and ELK StackWelcome to the 13th installment of our series, glad to have you back! Today's technical tutorial is a guide to tracking and logging in ASP.NET Core Web APIs using application insights, and the Elasticsearch, Logstash, and Kibana stack. When you build...20 likeselk-stack
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·Aug 13, 2024Today, I Deepened My Understanding of the fetch FunctionHey folks! Today, I delved into something that's been a part of my coding life for a while, but I never really stopped to appreciate its inner workings—the fetch function. It's a crucial tool, especially in web development, where we're constantly dea...10 likes·26 readsJavascript Basicsfetch API
Esam Hagalbashirezooon.hashnode.dev·Aug 1, 2024LinkedIn API Tutorial: Posting Images and TextLast week I was jumping from one tap to another, so I could post on LinkedIn from Time Logger an application I'm building, even the documentation from Microsoft was outdated. After so many StackOverflow questions and ChatGPT prompts, it worked.So her...219 readsLinkedIn API