{"id":31628268,"url":"https://github.com/ikdao/hyp","last_synced_at":"2026-05-15T01:38:11.291Z","repository":{"id":316943680,"uuid":"1064876174","full_name":"ikdao/hyp","owner":"ikdao","description":"Hyp - A Indie Indic UI Framework from ikdao","archived":false,"fork":false,"pushed_at":"2026-03-03T22:39:32.000Z","size":99,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-04T01:12:08.174Z","etag":null,"topics":["ui","ui-framework","ux"],"latest_commit_sha":null,"homepage":"https://ikdao.org/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ikdao.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-26T17:33:01.000Z","updated_at":"2026-03-03T22:39:36.000Z","dependencies_parsed_at":"2025-09-27T19:32:18.017Z","dependency_job_id":null,"html_url":"https://github.com/ikdao/hyp","commit_stats":null,"previous_names":["ikdao/hyp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ikdao/hyp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikdao%2Fhyp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikdao%2Fhyp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikdao%2Fhyp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikdao%2Fhyp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ikdao","download_url":"https://codeload.github.com/ikdao/hyp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikdao%2Fhyp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33050483,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ui","ui-framework","ux"],"created_at":"2025-10-06T20:21:19.168Z","updated_at":"2026-05-15T01:38:11.284Z","avatar_url":"https://github.com/ikdao.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Hyp UI Framework(in dev)\n================\n\n**Hyp** (by [ikdao](https://ikdao.org)) is an **Indie Indic UI/UX/IX Framework** built to experiment with minimal functional UI design patterns, inspired by hyperscript, reactive state, and virtual DOM execution.  \n\n*   **Lightweight**: Pure JS, minimal abstractions.\n    \n*   **Reactive**: Built-in Actor/state, derived Act, and side Act.\n    \n*   **Composable**: Functions are the building blocks.\n    \n*   **Experimental**: Targets SPA, SVG, AR/VR, and beyond.\n    \n\nHYP Core and Essentials \n----------\n\n## h() — Hyperscript\n\nThe h() function structure organs, organelles **virtual DOM node (VNode)**.\n\nPlain text\n`   import { h } from \"hyp\";  const vnode = h(\"div\", { class: \"box\" }, \"Hello Hyp\");   `\n\n*   ty → element type (string tag or component function)\n    \n*   prp → props (attributes, events, class, style, etc.)\n    \n*   chd → children (string, number, VNode, or array)\n\n## Triad E,O,S - living interface\n-----\n### Orchestrater \u0026 Directors\n\n**o (Organiser)** - identity and spatial manager, for awaring\ncreate and organise organs\n\n### e() — Executor - behaviour and renderer\nrender, redo organs(vDOM)\n\n**s (Scheduler)** - Temporal Manager, for attending\nrun, clear organs, actors lifecycle \n\nPlain text\n`   import { h, e } from \"hyp\";  const App = () =\u003e h(\"h1\", null, \"Hello World\");  e(h(App), document.getElementById(\"root\"));   `\n\nHandles:\n\n*   Mounting / unmounting components\n    \n*   Props \u0026 event binding\n    \n*   Child diffing (keyed + index-based)\n    \n*   SVG namespace support\n    \n\nNecessaries\n-----------\n\nThese are the **core reactive orchestration primitives**.\n\nHyp States - Actors/Reactor/Interactor  \n\na() \nactors are active primitive\n\ndA()/r()  \nderived Actor that act in response to existing act  \nsA()/i() \nside actor that act in relation to existing act  \n\nn()  \nnavigator that match path/query param and route to navigate or for navigating app  \n\n*   const counter = a(0);console.log(counter.get()); // 0counter.set(1);\n    \n*   const double = dA(() =\u003e counter.get() \\* 2);\n    \n*   sA(() =\u003e { console.log(\"Counter updated:\", counter.get());}, () =\u003e \\[counter.get()\\]);\n    \n\nFuture Possibilities\n--------------------\n\nThe roadmap includes evolving Hyp into a **full SPA framework**:\n\n*   **m()** → custom class modules / extensible components\n     \n*   **hX() / eX()** → AR/VR (XR) support\n    \n*   **SVG rendering** → already supported in e()\n    \n\nExample Counter App\n-------------------\n\nPlain text\n`   import HYP from \"hyp\";  const { h, e, a, sA } = HYP;  const Counter = () =\u003e {    const count = a(0);    return h(\"div\", { class: \"counter\" },      h(\"h1\", null, () =\u003e \"Count: \" + count.get()),      h(\"button\", { onClick: () =\u003e count.set(count.get() + 1) }, \"+\"),      h(\"button\", { onClick: () =\u003e count.set(count.get() - 1) }, \"-\")    );  };  e(h(Counter), document.getElementById(\"root\"));   `\n\nSupport Development\n-------------------\n\n*   **UPI**: hemangtewari@upi\n    \n*   **ETH**: 0x43ffd7C1Ea8AAfdc768c0883F35b2AE433EE4726\n    \n*   **BTC**: bc1qgk84f0dfddqfcww58ftse832udksf2wslnd3cd\n    \n*   **SOL**: DQr1t5uSriiwdu1NwTigJdbNg6WVHSFHijmyHFV27VC1  \n    \n\nLicense\n-------\n\n**Open Source** under [Zero One One Self License - 011sl](https://legal.ikdao.org/license/011sl)\n\nPlain text\n`   Hyp UI Framework - Hemang Tewari  License: 011sl   `\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fikdao%2Fhyp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fikdao%2Fhyp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fikdao%2Fhyp/lists"}