Debugging Asynchronous JavaScript with Chrome DevTools
11–20 of 50 posts
Re: Debugging Asynchronous JavaScript with Chrome DevTools
#12Protip with this feature: It can resolve where you originally bound your event listeners, regardless of if you used jQuery or whatever. So, either set up a breakpoint or establish an Event Listener Breakpoint[1] and you can walk back to where you registered the handler.
[1]: https://developers.google.com/chrome-developer-tools/docs/ja...
Re: Debugging Asynchronous JavaScript with Chrome DevTools
#13Re: Debugging Asynchronous JavaScript with Chrome DevTools
#14Re: Debugging Asynchronous JavaScript with Chrome DevTools
#15Now if only they could make a standalone IDE backed by chrome dev tools! Then I could use it for Node too :D
Re: Debugging Asynchronous JavaScript with Chrome DevTools
#16Now if only they could make a standalone IDE backed by chrome dev tools! Then I could use it for Node too :D
With it, you can use Chrome Dev Tools to debug your nodejs app.
Re: Debugging Asynchronous JavaScript with Chrome DevTools
#17Comment from Paul Irish, who is marked [dead]: Protip with this feature: It can resolve where you originally bound your event listeners, regardless of if you used jQuery or whatever. So, either set up a breakpoint or establish an Event Listener Breakpoint[1] and you can walk back to where you registered the handler. [1]: https://developers.google.com/chrome-developer-tools/docs/ja...
Re: Debugging Asynchronous JavaScript with Chrome DevTools
#18Wasn't this possible already? Put a breakpoint or 'breakpoint;' on the function body's first line and it will pause execution when the function is called synchronously or asynchronously. And browse the call stack on the right column. What's new here? I have been doing this for quite sometime.
Re: Debugging Asynchronous JavaScript with Chrome DevTools
#19Wasn't this possible already? Put a breakpoint or 'breakpoint;' on the function body's first line and it will pause execution when the function is called synchronously or asynchronously. And browse the call stack on the right column. What's new here? I have been doing this for quite sometime.
Re: Debugging Asynchronous JavaScript with Chrome DevTools
#20Wasn't this possible already? Put a breakpoint or 'breakpoint;' on the function body's first line and it will pause execution when the function is called synchronously or asynchronously. And browse the call stack on the right column. What's new here? I have been doing this for quite sometime.
More visually, check out the Before/After images from the doc: http://imgur.com/rZlgrMe