Skip to content

Getting Started

Web Component Base (WCB) alpha is a zero-dependency, tiny JS base class for creating reactive custom elements easily.

When you extend the WebComponent class for your custom element, you only have to define the template and properties. Any change in an observed property’s value will automatically cause the component UI to render.

The result is a reactive UI on property changes.

There’s a trade off between productivity & lightweight-ness here and it is somewhere between Microsoft’s FASTElement & Google’s LitElement.

Project Status

Treat it as a stable alpha product. Though the public APIs are stable, most examples are only useful for simple atomic use-cases due to remaining work needed on the internals.

…or you can even use just parts of it for your own base class.

Installation

The library is distributed as complete ECMAScript Modules (ESM) and published on NPM. Please email a ticket at ~ayoayco/wcb@todo.sr.ht or submit via SourceHut todo for problems or requests regarding our distribution.

Import via CDN

It is possible to import directly using a CDN like esm.sh or unpkg in your vanilla JS component or HTML files. In all examples in this document, we use unpkg but you can find on CodePen examples that esm.sh also works well.

Additionally, we use @latest in the rest of our usage and examples here for simplicity, but take note that this incurs additional resolution steps for CDNs to find the actual latest published version. You may replace the @latest in the URL with specific versions as shown in our CodePen examples, and this will typically be better for performance.

import { WebComponent } from 'https://unpkg.com/web-component-base@latest/index.js'

Installation via npm

Usable for projects with bundlers or using import maps pointing to the specific files downloaded in node_modules/web-component-base.

Terminal window
npm i web-component-base