One cool feature of Pym was that you could just load the library and it'd do the auto initialization without an explicit call. It was purposively left out of this to ensure no surprises (and to keep tree shaking functional), but it'd be cool to be able to import a specific version of the library that did do this.
import `@newswire/frames/auto`;
And...
<script src="https://unpkg.com/@newswire/frames/auto.js"></script>
<!-- or -->
<script src="https://unpkg.com/@newswire/frames/auto/index.js"></script>
One cool feature of Pym was that you could just load the library and it'd do the auto initialization without an explicit call. It was purposively left out of this to ensure no surprises (and to keep tree shaking functional), but it'd be cool to be able to import a specific version of the library that did do this.
And...