0.0.2 • Published 5 months ago

mode_nodules v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

mode_nodules

Web components without declarative templates. Utilizing the static initializer pattern.

usage

Client-side only package. Utilize through unpkg where possible.

import MN, {define} from 'https://unpkg.com/mode_nodules';

export default define(
    import.meta,
    class MyComponent extends MN.Element {
        onConnected() {}
        onUpdate() {}
        onDisconnected() {}
    }
)