How to view WS/WSS Websocket request content using Firebug or other?

Try Chrome’s developer tools, click ‘Network’ tab use the filters at the bottom to show only WebSocket connections), select the desired websocket connection, note that there are ‘Headers’, ‘Preview’, ‘Response’, etc. sub-tabs to the right, once data starts flowing a ‘WebSocket Frames’ subtab will appear. All data going in either direction is logged. Very informative.

How do I dump JavaScript vars in IE8?

Here’s one technique that I’ve found helpful: Open the Developer Tool Bar (hit F12) Go to the “Script” tab Click the “Start Debugging” button Next, type “debugger” into the console and hit enter. This should trigger a break point. Go to the “Watch” sub-tab Click the row that says, “Click to add…” and enter a … Read more

Replay HTTP POST in google chrome Developer

Update: Yes, it is possible in the latest version of Google Chrome. Just right click on the request and select Replay XHR. Another way as others pointed out is to: Right click request > “Copy” > “Copy ss curl”. Paste it to shell. or Right click request > “Copy” > “Copy as fetch”. Paste it … Read more

How to debug web workers

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 … Read more