Skip to main content

10 posts tagged with "Productivity"

View All Tags

tweak vs Requestly: Which HTTP Mocking Tool Is Right for You?

· 4 min read
Daniel Caldas
Co-founder

If you've been searching for a way to mock HTTP requests in your browser, you've likely come across both tweak and Requestly. Both tools let you intercept and modify network requests without touching your backend, but they approach the problem differently. This post breaks down what each tool does well and when you should reach for one over the other.

How to Override Response Headers with Chrome DevTools

· 3 min read
Daniel Caldas
Co-founder

Modern browsers have advanced development toolkits allowing HTTP request inspection in detail. With the recent Chrome 111 release users are now able to override response headers directly in the network panel. This means tools like browser extension are not needed to accomplish simple use cases. In this article we explore the current possibilities and limitations of one of the newest Chrome DevTools features.

Boost Your Productivity with Keyboard Shortcuts

· 3 min read
Daniel Caldas
Co-founder

Keyboard shortcuts are an essential tool for web developers, as they can help speed up common tasks and improve efficiency in the development process. In modern browsers such as Google Chrome and Mozilla Firefox, keyboard shortcuts can be especially helpful for debugging, as they allow developers to quickly access and navigate various development tools without needing to use their mouse or trackpad. We're also looking into why you should give a damn about shortcuts.

How to Simulate HTTP Request Errors

· 4 min read
Daniel Caldas
Co-founder

Errors handling is part of our work as developers. You can try to ignore them at first, but to offer a good user experience, you don't want your website breaking just because one of the API endpoints decided to give up on you. These days we try to find clever workarounds to run our applications with a graceful degradation strategy. We build software to work in an optimal environment while providing certain fallbacks not to break the experience entirely when there's some disturbance in the system (e.g., lousy network condition, CPU lag, etc.).

In this article, we will understand how to maximize productivity when tackling HTTP requests error handling from a front-end development perspective.

7 Powerful Browser Extensions for Frontend Development

· 5 min read
Daniel Caldas
Co-founder

We're always looking for new ways to improve our effectiveness as frontend developers. We want to pick the right tools to get the job done. We want to have a fully equipped browser, to troubleshoot any tricky bug that comes our way.

Browser extensions have been around for a while, making their way into our development workflow in many different shapes. We can think of extensions as development companions.

In this article, we would like to share a few of them, that in our opinion, provide valuable assistance for frontend developers.

Simulate Delays in HTTP Requests

· 4 min read
Daniel Caldas
Co-founder

There might be a few reasons why we would want to delay an HTTP request:

  • You want to test how your UI behaves to a slow response from an upstream service.
  • There's a race condition in my code, and I suspect that it happens when the request to A is slower than the request B.
  • You want to show off that beautiful loading animation you've been working on all day!