Issues debugging VueJS applications
See original GitHub issueTrying to debug a Vue application, but I’m seeing lots of these errors in the console. Not sure if it is the cause of my failure to actual hit breakpoints:
[2020-01-15 14:25:54.915] [renderer1] [warning] UNRESPONSIVE extension host, 'ms-vscode.js-debug-nightly' took 96% of 461.196ms, saved PROFILE here: '/var/folders/w9/y7wbvtz13mv22f2hq9y752t00000gp/T/exthost-3000be.cpuprofile' [{"id":"gc","total":489,"percentage":0},{"id":"ms-vscode.js-debug-nightly","total":443948,"percentage":96},{"id":"octref.vetur","total":405,"percentage":0},{"id":"program","total":231,"percentage":0},{"id":"self","total":15935,"percentage":3}]
[2020-01-15 14:30:12.505] [renderer1] [warning] UNRESPONSIVE extension host, 'ms-vscode.js-debug-nightly' took 98% of 129.526ms, saved PROFILE here: '/var/folders/w9/y7wbvtz13mv22f2hq9y752t00000gp/T/exthost-b909a9.cpuprofile' [{"id":"cssho.vscode-svgviewer","total":127,"percentage":0},{"id":"ms-vscode.js-debug-nightly","total":126498,"percentage":98},{"id":"program","total":124,"percentage":0},{"id":"self","total":1933,"percentage":1},{"id":"vscode.git","total":132,"percentage":0},{"id":"vscode.json-language-features","total":419,"percentage":0},{"id":"vscode.typescript-language-features","total":133,"percentage":0}]
[2020-01-15 14:33:27.654] [renderer1] [warning] UNRESPONSIVE extension host, 'ms-vscode.js-debug-nightly' took 97% of 94.578ms, saved PROFILE here: '/var/folders/w9/y7wbvtz13mv22f2hq9y752t00000gp/T/exthost-c5ede5.cpuprofile' [{"id":"ms-vscode.js-debug-nightly","total":91462,"percentage":97},{"id":"octref.vetur","total":413,"percentage":0},{"id":"program","total":813,"percentage":1},{"id":"self","total":1756,"percentage":2}]
Issue Analytics
- State:
- Created 4 years ago
- Comments:39 (15 by maintainers)
Top Results From Across the Web
Vue.js Debugging: A Guide to Fixing Your Frontend - Snipcart
Learn the basics of Vue.js debugging. This guide will walk you through a tutorial on how to fix your application's frontend.
Read more >How to debug Vue.js apps
Problems in your apps a.k.a. bugs can be caused by syntax or logical errors. ... Fixing these errors is called debugging. Usually we...
Read more >Error handling, debugging, and tracing in Vue.js
In this tutorial, we'll demonstrate how to handle errors, set up a debugger, and trace errors efficiently in Vue.js.
Read more >How to Debug VueJS with Chrome DevTools
Vue Debugging Tools · Edit and manipulate the Vue component data. · Load the HTML of custom components in the DOM. · Track...
Read more >How To Debug Components, State, and Events with Vue.js ...
When debugging a Vue application, it is common to iterate on your code, making changes then restarting the server to see if they...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
On the way
Thanks for your help with this. I’ll try to get another log for you. It’s sort of hit-and-miss as to whether a breakpoint will be hit. Today, I set a couple, but they were just ignored. Then they started working. Hopefully it’ll get figured out, it’s super helpful to not have to use the browser debugger directly.