debugger

The Chrome Debugger

You should use the chrome debugger if you do any frontend js/ts work. /thread console.log is dead. The debugger saves my ass every time. You don’t need to set up anything or even import it if your using Chrome. You just: Add debugger; anywhere in your code: (stick it behind an if if you like!) If you’re debugging on the fly, find your file in the sources tab and click “Add Breakpoint”. Now you can really debug all those god damn rerenders. ...

February 14, 2025 Â· 1 min Â· Conor Lamb