Debuging Angular source code #137
-
How I can set breakpoints in angular source code to actually see what's happening? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
You need to find the corresponding piece of code in the built sources. Open DevTools, do a global search |
Beta Was this translation helpful? Give feedback.
-
Hi, how we can use ng.probe on browser console in Angular > 12v |
Beta Was this translation helpful? Give feedback.
-
hey, the api changed, I'll be explaining it in depth in my Angular course,
check it out here https://courses.indepth.dev/angular
…On Wed, Dec 28, 2022 at 8:33 AM Galina Gorbel ***@***.***> wrote:
Hi, how we can use ng.probe on browser console in Angular > 12v
—
Reply to this email directly, view it on GitHub
<#137 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABOXEO6IY2TBNRWC362GV4DWPPNNDANCNFSM5BEZD3GA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
You need to find the corresponding piece of code in the built sources. Open DevTools, do a global search
Ctrl+Shift+F
for the namedetectChangesInternal
, once you find the function, put a breakpoint there.