Posted inReact Handling API Calls with useEffect and fetch Posted by Emir June 2, 2019 Published on 2.6.2019 Fetching data from an API is a common requirement in modern web…
Posted inReact Code Splitting with React.lazy and Suspense Posted by Emir June 1, 2019 Published on 29.6.2019 As React applications grow in size, the need to optimize for performance…
Posted inReact Building a Custom Hook: useLocalStorage Posted by Emir May 24, 2019 Published on 24.5.2019 React’s custom hooks allow you to extract and reuse logic across components…
Posted inReact The useRef Hook: When and How to Use It Posted by Emir May 12, 2019 Published on 12.5.2019 React hooks have brought a new way to work with state, lifecycle…
Posted inReact Debouncing in React with useEffect Posted by Emir May 4, 2019 May 4, 2019 When building React applications, handling user input efficiently is crucial—especially when dealing with search fields or API…
Posted in.NET C# Building an Event-Driven Architecture with .NET Core Posted by Emir April 25, 2019 April 25, 2019 In modern software development, building scalable and loosely-coupled systems is a top…
Posted inReact How to Use useReducer Instead of Redux (When to Choose What) Posted by Emir April 17, 2019 April 17, 2019 Redux has been the standard for state management in React applications for…
Posted inReact React Context API + useContext for Global State Management Posted by Emir April 5, 2019 April 5, 2019 State management has always been a key challenge in React applications. While Redux has…
Posted inReact Why You Should Stop Using Class Components (Mostly) Posted by Emir March 10, 2019 React Hooks, introduced in React 16.8, have changed the way developers write components. With Hooks, state…
Posted inReact Understanding useEffect: Side Effects in Functional Components Posted by Emir March 3, 2019 With the introduction of React Hooks in React 16.8, functional components gained the ability to manage…