How to debug postMessages

arthurdenner

Arthur Denner

Posted on February 23, 2021

How to debug postMessages

TL;DR



monitorEvents(window, 'message')
// or
window.addEventListener('message', console.log)


Enter fullscreen mode Exit fullscreen mode

Concept

From the MDN docs:

The window.postMessage() method safely enables cross-origin communication between Window objects; e.g., between a page and a pop-up that it spawned, or between a page and an iframe embedded within it.

That's pretty cool, right?

Demo

Here is a demo of postMessage usage.

Debug

But how can we debug these messages?

Run the following in the Console tab:



// On Safari and Chromium-based browsers
monitorEvents(window, 'message')

// On Firefox
window.addEventListener('message', console.log)
// ^ It works in all the other browsers too


Enter fullscreen mode Exit fullscreen mode

If you're testing in CodeSandbox, run the command in the Console of its detached window.

Result

After the setup, when receiving messages, you should see something like this:

image.png

That's it!


I hope you enjoyed this post and follow me on any platform for more.

πŸ’– πŸ’ͺ πŸ™… 🚩
arthurdenner
Arthur Denner

Posted on February 23, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related