How to check the console for open websockets connections?

2

I was analyzing how StackOverflow checks for updates to the list of questions, but nothing appears on the console (Firebug), so I imagine they are using websockets.

Then I had a question: can I check the connections open websockets through the console (the browser itself or Firebug)? How?

    
asked by anonymous 20.01.2015 / 14:14

1 answer

2

If you're using Google Chrome you can:

  • Open the Developer Tools window, shortcut: CTRL + Shift
  • Click on the Network tab.
  • Click on the WebSockets tab.
  • Click the Filter button.

  • In Firebug you can do this from version 2, as quoted in roadmap .

        
    20.01.2015 / 14:31