1.0.2 • Published 2 years ago

hi-bjorn v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

hi-bjorn

Implementation of a simple web component.

The component class is in src/hi-bjorn.js, and it it tested using web-test-runner.

package.json::main == "index.js" which contains the export of the component class.

./hi-bjorn.js contains code the registers the component class as a custom element.

package.json

important: package.json::type == "module" is required for the import to work.

  "type": "module",
  "module": "index.js",

Usage html

Install the package using npm or yarn.

    npm install hi-bjorn

Then use it directly in your html:

    <script type="module" src="node_modules/hi-bjorn/hi-bjorn.js"></script>
    ...
    Hello <hi-bjorn name="Usage"></hi-bjorn>

Use it from index.js:

Install the package using npm or yarn.

    npm install hi-bjorn

index.js:

    import { HiBjorn } from 'hi-bjorn';
    window.customElements.define('hi-bjorn', HiBjorn);
    <script type="module" src="index.js"></script>
    ...
    Hello <hi-bjorn name="Usage"></hi-bjorn>
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago