A mighty tinny web components framework/library


Keywords
web, component, components, web-components, js, html, css, framework, data-binding, data, binding, routing, router, http, front-end, x-tag, polymer, angular, application, arrow-js, browser, customelements, esmodules, library, lit-element, lit-html, spa, vue, webcomponents
License
MPL-2.0
Install
npm install jenie@1.9.2

Documentation

X-Element

Reactivity without the complexity.

Vision

Provide a knowledge transferable future proof, reactive data binding, library for building web interfaces.

Features

  • 👶 Simple If you know HTML, JS, and Template Literals then you know XElement.

  • ⛽ Agnostic Use XElement with any framework or library - Lit, Vue, React, Angular..

  • âš› Reactive Performant and efficient two way reactive data binding.

  • âš¡ Fast Rendering is blazing fast, because XElement only interacts with the dynamic DOM Nodes..

Learn

https://xeaone.github.io/element/

Examples

import { html } from 'https://esm.sh/@xeaone/element/module/index.js';

let count = 0;

export default () => html`
    <strong>${() => `Hello World ${count}`}</strong>
    <button onclick=${() => count++}>Greet</button>
`(document.body);

Custom Element

import { html } from 'https://esm.sh/@xeaone/element/module/index.js';

const {html} = await import('https://esm.sh/@xeaone/element/module/index.js')

export default class extends HTMLElement {
    #root = this.attachShadow({ mode: "open" });
    #count = 0;
    #render = () => html`
        <strong>${() => `Hello World ${this.#count}`}</strong>
        <button onclick=${() => this.#count++}>Greet</button>
    `(this.#root);
    constructor() {
        super();
        this.#render();
    }
}

Use

The two directories to use are module and bundle. Bundle includes ESNext and ES2015 js bundles. Module contains ESM files with .js, .ts, and .d.ts.

NPM

npm install @xeaone/element

CDN

https://www.npmjs.com/package/@xeaone/element

https://esm.sh/@xeaone/element/module/index.ts https://esm.sh/@xeaone/element/module/index.js

https://cdn.jsdelivr.net/gh/xeaone/element/module/index.ts https://cdn.jsdelivr.net/gh/xeaone/element/module/index.js

Author

xeaone

License

This project is licensed under the MPL-2.0 License