Latest Updates

Documenting code, one commit at a time.

Axios 2 posts
×
JavaScript Axios

Streamlining API Calls: The Power of Axios Instances and Middleware

In the AplicacionJoyeria project, ensuring robust and consistent interaction with our backend APIs is paramount. We recently implemented a significant improvement in how we manage these interactions, focusing on maintainability and error handling.

The Situation

Before this update, our application's API calls might have been scattered, leading to repetitive code for common tasks such as

Read more

Streamlining State Management in React Applications with Redux Toolkit

Introduction

Managing application state can become complex as React applications grow. Redux offers a solution, but its traditional setup often involves considerable boilerplate. Redux Toolkit simplifies this process, and when combined with Thunks and Slices, it provides a more efficient and maintainable approach to state management.

Simplifying Redux Setup

Redux Toolkit streamlines

Read more