**Alpha** | [Docs&Examples](https://jaandrle.github.io/deka-dom-el "Official documentation and guide site") | [NPM](https://www.npmjs.com/package/deka-dom-el "Official NPM package page") | [GitHub](https://github.com/jaandrle/deka-dom-el "Official GitHub repository") ([*Gitea*](https://gitea.jaandrle.cz/jaandrle/deka-dom-el "GitHub repository mirror on my own Gitea instance")) ***Vanilla for flavouring โ€” a full-fledged feast for large projects*** ```javascript // ๐ŸŒŸ Reactive component with clear separation of concerns document.body.append( el(EmojiCounter, { initial: "๐Ÿš€" }), ); function EmojiCounter({ initial }) { // โœจ - Define reactive data const count = S(0); const emoji = S(initial); const textContent = S(() => `Hello World ${emoji.get().repeat(count.get())}`); // ๐Ÿ”„ - UI updates automatically when signals change return el().append( el("p", { textContent, className: "output" }), // ๐ŸŽฎ - Update state on events el("button", { textContent: "Add Emoji" }, on("click", () => count.set(count.get() + 1)), ), el("select", null, on.defer(el=> el.value= initial), on("change", e => emoji.set(e.target.value)), ).append( el(Option, "๐ŸŽ‰"), el(Option, "๐Ÿš€"), el(Option, "๐Ÿ’–"), ), ); } function Option({ textContent }){ return el("option", { value: textContent, textContent }); } ``` *โ€ฆuse simple DOM API by default and library tools and logic when you need them*

Deka DOM Elements Logo

# Deka DOM Elements (dd\ or DDE) Creating reactive elements, components, and Web Components using the native [IDL](https://developer.mozilla.org/en-US/docs/Glossary/IDL)/JavaScript DOM API enhanced with [**signals/observables**](#understanding-signals). ## Features at a Glance - โœ… **No build step required** โ€” use directly in browsers or Node.js - โœ… **Minimalized footprint** โ€” ~10-15kB minified bundle (original goal 10kB), **zero**/minimal dependencies and small in-memory size (auto-releasing resources as much as possible) - โœ… **Declarative & functional approach support** for clean, maintainable code - โœ… **Signals and events** for reactive UI - โœ… **Memoization for performance** โ€” optimize rendering with intelligent caching - โ˜‘๏ธ **Optional build-in signals** with support for custom reactive implementations (#39) - โ˜‘๏ธ **Server-side rendering** support via [jsdom](https://github.com/jsdom/jsdom) - โœ… **TypeScript support** - โœ… **Support for debugging with browser DevTools** without extensions - โ˜‘๏ธ **Enhanced Web Components** support ## Getting Started ### Quick Links - [**Documentation and Guide**](https://jaandrle.github.io/deka-dom-el) - [**Examples**](https://jaandrle.github.io/deka-dom-el/p15-examples.html) - [**Changelog**](https://github.com/jaandrle/deka-dom-el/releases) ### Installation ```bash npm install deka-dom-el --save ``` โ€ฆor via CDN / Direct Script: For CDN links and various build formats (ESM/IIFE, with/without signals, minified/unminified), see the [interactive format selector](https://jaandrle.github.io/deka-dom-el/#h-getting-started) on the documentation site. ```html ``` ## Why Another Library? This library bridges the gap between minimal solutions like van/hyperscript and more comprehensive frameworks like [solid-js](https://github.com/solidjs/solid), offering a balanced trade-off between size, complexity, and usability. Following functional programming principles, dd\ starts with pure JavaScript (DOM API) and gradually adds auxiliary functions. These range from minor improvements to advanced features for building complete declarative reactive UI templates. A key advantage: any internal function (`assign`, `classListDeclarative`, `on`, `dispatchEvent`, `S`, etc.) can be used independently while also working seamlessly together. This modular approach makes it easier to integrate the library into existing projects. ## Understanding Signals Signals are the reactive backbone of Deka DOM Elements: - [Signals โ€” what's going on behind the scenes](https://itnext.io/signals-whats-going-on-behind-the-scenes-ec858589ea63) - [The Evolution of Signals in JavaScript](https://dev.to/this-is-learning/the-evolution-of-signals-in-javascript-8ob) - [TC39 Signals Proposal](https://github.com/tc39/proposal-signals) (future standard) - [Observer pattern](https://en.wikipedia.org/wiki/Observer_pattern) (underlying concept) ## Contributing We welcome contributions from the community! Please see our [Contributing Guide](CONTRIBUTING.md) for details on how to get started, coding standards, commit guidelines, and the pull request process. ## Inspiration and Alternatives - [vanjs-org/van](https://github.com/vanjs-org/van) โ€” World's smallest reactive UI framework - [adamhaile/S](https://github.com/adamhaile/S) โ€” Simple, clean, fast reactive programming - [hyperhype/hyperscript](https://github.com/hyperhype/hyperscript) โ€” Create HyperText with JavaScript - [potch/signals](https://github.com/potch/signals) โ€” A small reactive signals library - [AseasRoa/paintor](https://github.com/AseasRoa/paintor) - JavaScript library for building reactive client-side user interfaces or HTML code. - [pota](https://pota.quack.uy/) โ€” small and pluggable Reactive Web Renderer. It's compiler-less, includes an html function, and a optimized babel preset in case you fancy JSX. - [TarekRaafat/eleva](https://github.com/TarekRaafat/eleva) โ€” A minimalist, lightweight, pure vanilla JavaScript frontend runtime framework. - [didi/mpx](https://github.com/didi/mpx) โ€” Mpx๏ผŒไธ€ๆฌพๅ…ทๆœ‰ไผ˜็ง€ๅผ€ๅ‘ไฝ“้ชŒๅ’Œๆทฑๅบฆๆ€ง่ƒฝไผ˜ๅŒ–็š„ๅขžๅผบๅž‹่ทจ็ซฏๅฐ็จ‹ๅบๆก†ๆžถ - [mxjp/rvx](https://github.com/mxjp/rvx) โ€” A signal based frontend framework - [jaandrle/dollar_dom_component](https://github.com/jaandrle/dollar_dom_component) โ€” Functional DOM components without JSX/virtual DOM (my old library)