0.1.1 • Published 4 years ago

he-lib v0.1.1

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

he-lib

A customElements indirection to have hooked-elements library a part, without needing to bundle it within components.

// vanilla
customElements.whenDefined('he-lib').then(() => {
  const {define} = customElements.get('he-lib');
  define('.my-component', {
    init() {
      console.log('my-component is ready');
    }
  });
});

// with helper
import when from 'once-defined';
when('he-lib').then(({define}) => {
  define('.another-component', {
    init() {
      console.log('another-component is ready');
    }
  });
});

Previous Work