{"id":15692844,"url":"https://github.com/ultirequiem/kumeru","last_synced_at":"2025-09-12T04:36:35.158Z","repository":{"id":57289592,"uuid":"462023727","full_name":"UltiRequiem/kumeru","owner":"UltiRequiem","description":"💃  A Deno First, low-level HyperScript-like Frontend Library","archived":false,"fork":false,"pushed_at":"2023-06-06T02:39:31.000Z","size":161,"stargazers_count":5,"open_issues_count":3,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-09T03:32:00.168Z","etag":null,"topics":["browser","deno","frontend","html","javascript","nodejs","typescript"],"latest_commit_sha":null,"homepage":"https://kumeru.js.org","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UltiRequiem.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":"contributing.md","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}},"created_at":"2022-02-21T20:37:22.000Z","updated_at":"2022-04-04T21:39:36.000Z","dependencies_parsed_at":"2024-10-24T01:38:07.337Z","dependency_job_id":null,"html_url":"https://github.com/UltiRequiem/kumeru","commit_stats":{"total_commits":28,"total_committers":1,"mean_commits":28.0,"dds":0.0,"last_synced_commit":"b443b671d886921016d89c32d65de5e5f74ed9ee"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/UltiRequiem/kumeru","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UltiRequiem%2Fkumeru","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UltiRequiem%2Fkumeru/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UltiRequiem%2Fkumeru/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UltiRequiem%2Fkumeru/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UltiRequiem","download_url":"https://codeload.github.com/UltiRequiem/kumeru/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UltiRequiem%2Fkumeru/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274753658,"owners_count":25342831,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-12T02:00:09.324Z","response_time":60,"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":["browser","deno","frontend","html","javascript","nodejs","typescript"],"created_at":"2024-10-03T18:40:29.901Z","updated_at":"2025-09-12T04:36:35.118Z","avatar_url":"https://github.com/UltiRequiem.png","language":"TypeScript","funding_links":["https://patreon.com/UltiRequiem"],"categories":[],"sub_categories":[],"readme":"# Kumeru\n\n[![CI](https://github.com/UltiRequiem/kumeru/actions/workflows/ci.yaml/badge.svg)](https://github.com/UltiRequiem/kumeru/actions/workflows/ci.yaml)\n[![codecov](https://codecov.io/gh/ultirequiem/kumeru/branch/main/graph/badge.svg)](https://codecov.io/gh/ultirequiem/kumeru)\n[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/kumeru/mod.ts)\n\n![Custom badge](https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fdep-count%2Fx%2Fkumeru%2Fmod.ts)\n![Custom badge](https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fupdates%2Fx%2Fkumeru%2Fmod.ts)\n[![Custom badge](https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Flatest-version%2Fx%2Fkumeru%2Fmod.ts)](https://doc.deno.land/https/deno.land/x/kumeru/mod.ts)\n\nA low-level and HyperScript-like Frontend Library 🚀\n\nThere is still a lot to do, but you can use it already! Check\n[Pages using Kumeru on Production](#pages-using-kumeru-on-production)!\n\n## Usage\n\n### [Deno 🦕](https://deno.land/x/kumeru)\n\n```javascript\nimport {\n  createElement,\n  render,\n  wrapElements,\n} from \"https://deno.land/x/kumeru/mod.ts\";\n\nconst app = wrapElements(\n  createElement(\"h1\", \"Kumeru\"),\n  createElement(\"a\", \"Documentation\", {\n    attributes: {\n      href: \"https://kumeru.js.org\",\n      target: \"_blank\",\n    },\n  }),\n);\n\nrender(document.getElementById(\"root\"), app);\n```\n\n### [Node.js 🐢](https://www.npmjs.com/package/kumeru)\n\n```javascript\nimport { createElement, render } from \"kumeru\";\n\nrender(document.getElementById(\"root\"), createElement(\"p\", \"Hello World\"));\n```\n\n### Browser\n\nUsing\n[type module](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules)\n🍱\n\n- [esm.sh](https://esm.sh/@ultirequiem/kumeru)\n\n- [skypack](https://cdn.skypack.dev/@ultirequiem/kumeru)\n\nUsing a plain\n[script tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script) 👇\n\n- [jsdelivr](https://cdn.jsdelivr.net/npm/@ultirequiem/kumeru)\n\n- [unpkg](https://unpkg.com/@ultirequiem/kumeru)\n\nYou have the same API on all of this platforms.\n\n## Docs\n\n[Autogenerated Documentation](https://doc.deno.land/https://deno.land/x/kumeru/mod.ts)\n😎\n\nFor examples you can check [`examples/`](./examples) 📂\n\n## Support\n\nOpen an Issue, I will check it a soon as possible 👀\n\nIf you want to hurry me up a bit\n[send me a tweet](https://twitter.com/intent/tweet?text=%40UltiRequiem%20) 😆\n\nConsider [supporting me on Patreon](https://patreon.com/UltiRequiem) if you like\nmy work 🚀\n\nDon't forget to start the repo ⭐\n\n## Pages Using Kumeru on Production\n\nAre you using Kumeru on your page? Make a pull request adding your page here!\n\n- [Sergif](https://sergif.ultirequiem.com) - (Kumeru + Tailwind CSS + Netlify\n  Functions)\n\n## Licence\n\nLicensed under the MIT Licence.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultirequiem%2Fkumeru","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fultirequiem%2Fkumeru","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultirequiem%2Fkumeru/lists"}