The Simplest Possible Web Component (CustomElement) 📎
class HelloWorld extends HTMLElement {
connectedCallback() {
const message = "world";
this.innerText = `
hello, ${message}
`;
}
}
customElements.define('hello-world',HelloWorld);
which renders itself after including in a "html" page:
<!DOCTYPE html>
<html>
<body>
<hello-world></hello-world>
<script src="HelloWorld.js"></script>
</body>
</html>
WebComponents are supported in all recent browsers.
See you at "Build to last" effectively progressive applications with webstandards only -- the "no frameworks, no migrations" approach, at Munich Airport, Terminal 2 or effectiveweb.training (online).