I have been working with web workers in HTML 5 and am looking for ways to debug them. Ideally something like the firebug or chrome debuggers. Does anyone have any good solution to this. with no access to the console or DOM its kind of hard to debug iffy code
|
feedback
|
|
As a fast solution on the missing console.log, you can just use | |||
|
feedback
|
|
Dev Channel version of Chrome supports debugging of workers by injecting fake workers implementation that simulates workers using an iframe within worker's client page. You will need to navigate to Scripts pane and tick Debug checkbox on Workers sidebar on the right, then reload the page. The worker script will then appear in the list of page scripts. This simulation has certain limitations, though -- since worker script will run in the client page thread, any long-running operations in worker will freeze the browser UI. | |||||
feedback
|
|
This article covers the topic. | ||||
|
feedback
|
|
in the chrome debugger, in the script tab, scroll to the worker panel, and select pause on start.. it will allow you to debug a worker, and insert break points.. but you do all that in a different window | |||
|
feedback
|
|
Here are a couple of tips on WebWorker debugging. | |||
|
feedback
|
debugger;before the line you'd like to breakpoint? – Juan Mendes Nov 17 '11 at 16:27