Debugging with Chrome Dev Tools - mmedrano9438/peripheral-brain GitHub Wiki

Accessing the debugger in Chrome is simple, and there are a few ways to do it:

Right-click on the browser page you’d like to debug and select Inspect. Navigate to the browser menu, scroll down to More tools, and click on Developer tools. Use the keyboard shortcuts – Ctrl Shift J in Windows or Ctrl Option J in iOS. The Sources tab is where you view your source code/bundle output. Add breakpoints by using either the debugger keyword which will pause the code at that point

Guide