Hacker News new | ask | show | jobs
by milkytron 2579 days ago
One of my favorite things with Firefox is the ability to “edit and resend” requests in the browser devtools. I’m sure there are plugins that do something similar on chrome/chromium. But I use it all the time and my colleagues are always blown away when I show them this.
2 comments

Whoa, never knew that was a thing. I found FF's dev tools quite bulky and clunky in the past, but I might have to give it another go.
That's the only reason I keep falling back to Chrome, the dev tools are just so much more refined.
The one thing I always liked about Chrome dev tools was the ability to introspect WebSocket frames. Last I checked this couldn’t be done in Firefox :(

Otherwise, I have found Firefox dev tools to be fairly competitive. I liked the CSS Grid stuff they had around the launch of Quantum; it made it easier for me to jump into Grid.

I use Firefox personally, but develop with Chrome. I have a hard time getting stack traces from Firefox reliably. Oftentimes one of the following occurs on Firefox:

There is no error, but the page won't load. There is an error, but the error message is generic. There is an error message, but no stack trace.

When I switch to chrome, I always get the error and stack trace without any further code modifications.

I make sure to clean up for Firefox in releases. But it's just impossible to develop without error messages and traces. I'm on Ubuntu using the latest stable releases.

Ugh. Is this really still broken? I'm not a web dev but I remember having to switch to Chromium 6-8 months ago when I needed to debug a websockets issue.
Chromium and Opera have the same dev tools and doesn't tie you to chrome.
Ah yeah, on occasion I will boot Firefox at work for this capability.

Truth be told I know of nothing similar in Chrome/Chromium, but you can do something similar using the healthy number of “Copy Request As” context options. I like to copy as fetch and manipulate it in the console. It’s not perfect but it’s useful.