That's just an illustration of how it can be done otherwise. The only non-standard thing there is that CSS glue construct:
selector { aspect: Func url(script.js); }
It tells that as soon as element matching that selector will appear in the DOM it will have Func() called (from script.js). No complex abstractions are required.
"to share internal web component libraries within my own company, never mind some other 3rd party"
My pardon, I didn't get the "to share" part, who share, what, and with whom?
I meant creating a web component based widget library and sharing that for use on anything from desktop GUIs to web sites.
Sciter’s approach is pretty much the same approach used by web components (combining css/html/js to a single reuseable element). Unfortunately it isn’t 100% compliant with browser based web components and hence Sciter based widget libraries can not be used for web sites or vice versa.
Yet note that, in case of CSS bindings, hello-world.js will be loaded only if your document will have matching elements - better componentization I would say.
"to share internal web component libraries within my own company, never mind some other 3rd party"
My pardon, I didn't get the "to share" part, who share, what, and with whom?