Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

debugging plunker in chrome developer tools

Tags:

I created a javascript file in Plunker and I want to debug it. When I open 'Sources' panel, I don't see js file that I created. I only see plenty of Plunker js files. Please advice. Thanks

like image 358
Dmitry Avatar asked Sep 25 '14 15:09

Dmitry


People also ask

How do I view call stack in Chrome?

View the Call Stack To view the call stack, open DevTools Sources panel and on the right panel, expand the Call Stack panel to see all the current functions in the call stack.


1 Answers

Another way is to put this in your javascript file

debugger;

and leave the console open, which will force the debugger to not only stop there but to also open the file.

like image 192
dwbartz Avatar answered Oct 18 '22 06:10

dwbartz