{"id":14990119,"url":"https://github.com/wompojs/wompo","last_synced_at":"2026-01-17T17:39:00.106Z","repository":{"id":230913742,"uuid":"766323957","full_name":"wompojs/wompo","owner":"wompojs","description":"Wompo is a React-like web components library to create functional UIs in the web.","archived":false,"fork":false,"pushed_at":"2026-01-15T19:46:12.000Z","size":1004,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-17T07:20:28.600Z","etag":null,"topics":["components-library","js","jsx","typescript","web-components"],"latest_commit_sha":null,"homepage":"https://wompo.dev","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/wompojs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"wompo","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"custom":null}},"created_at":"2024-03-03T00:00:08.000Z","updated_at":"2026-01-15T19:44:58.000Z","dependencies_parsed_at":"2024-11-14T16:24:07.982Z","dependency_job_id":"62e46050-ab21-493c-92bf-4bbb3751718c","html_url":"https://github.com/wompojs/wompo","commit_stats":{"total_commits":128,"total_committers":3,"mean_commits":"42.666666666666664","dds":0.4375,"last_synced_commit":"3beaa14eb43f2bd16b87a0c60ba47078a1e0369b"},"previous_names":["saderyal/womp"],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/wompojs/wompo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wompojs%2Fwompo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wompojs%2Fwompo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wompojs%2Fwompo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wompojs%2Fwompo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wompojs","download_url":"https://codeload.github.com/wompojs/wompo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wompojs%2Fwompo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28513840,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["components-library","js","jsx","typescript","web-components"],"created_at":"2024-09-24T14:19:28.865Z","updated_at":"2026-01-17T17:39:00.088Z","avatar_url":"https://github.com/wompojs.png","language":"TypeScript","funding_links":["https://ko-fi.com/wompo"],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003cpicture\u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./assets/logo-dark.svg\" alt=\"Wompo\" width=\"300\" height=\"141\"\u003e\n  \u003c/source\u003e\n  \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"./assets/logo.svg\" alt=\"Wompo\" width=\"300\" height=\"141\"\u003e\n  \u003c/source\u003e\n  \u003cimg src=\"./assets/logo.svg\" alt=\"Wompo\" width=\"300\" height=\"141\"\u003e\n\u003c/picture\u003e\n\n### Fast, React-like, Web-Components.\n\n\n[![Published on npm](https://img.shields.io/npm/v/wompo.svg?logo=npm)](https://www.npmjs.com/package/wompo)\n\n\u003c/div\u003e\n\n\n### Documentation\n\nCheck the full documentation for Wompo at [wompo.dev](https://wompo.dev).\n\n[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/wompo)\n\n### Quick Example: Counter\n\nCreating a custom Counter component is very easy with Wompo, and works exactly like React!\n\n```js\nimport { defineWompo, html } from 'wompo';\n\nexport default function CounterComponent({ styles: s }) {\n  const [count, setCount] = useState(0);\n  const inc = () =\u003e setCount(count + 1);\n  return html`\u003cbutton class=${s.button} @click=${inc}\u003e\n    Current value: ${count}\n  \u003c/button\u003e`;\n}\n\nCounterComponent.css = `\n  .button {\n    border-radius: 10px;\n    background-color: #573ef6;\n    color: #fff;\n    padding: 10px 20px;\n    border: none;\n  }\n`\n\ndefineWompo(CounterComponent);\n```\n\nThen, you can simply render it in you HTML:\n\n```html\n\u003ccounter-component\u003e\u003c/counter-component\u003e\n\u003c!-- Will render: \u003cbutton\u003eCurrent value: 0!\u003c/button\u003e --\u003e\n```\n\n### JSX\n\nWompo supports JSX. If you use it with Typescript, write this in your `tsconfig.json` file:\n\n```json\n\"jsx\": \"react-jsx\",\n\"jsxImportSource\": \"wompo\",\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwompojs%2Fwompo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwompojs%2Fwompo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwompojs%2Fwompo/lists"}