Been playing today with a Proof of Concept of embedding NEAR BOS widgets as a Web Component ( Custom Element ). You load the JS bundle for the viewer component, and then it's available as a html tag: ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Near social</title> <script defer src="runtime.fd80bc8b72bcabf47564.bundle.js"> </script><script defer src="main.bb4ea64edadc503d9810.bundle.js"></script></head> <body> <h1>NEAR BOS embeddable custom element</h1> <near-social-viewer></near-social-viewer> </body> </html> ``` A demo running on github pages is here: https://petersalomonsen.github.io/near-bos-webcomponent/devhub.near/widget/app And the repository is here: https://github.com/petersalomonsen/near-bos-webcomponent The purpose of this is for running tests for DevHUB ( so that we don't have to rely on near.org with accepting TOS and cookies ). Not sure if anyone wants this (just my own initiative), but at least it was interesting to see that it is possible to embed BOS widgets into any web app using Web Components/Custom Elements technology.