{"id":44999781,"url":"https://github.com/metacurb/electron-ipc-bridge","last_synced_at":"2026-02-18T22:11:42.042Z","repository":{"id":335328899,"uuid":"1143561878","full_name":"metacurb/electron-ipc-bridge","owner":"metacurb","description":"Type-safe, class-based IPC for Electron","archived":false,"fork":false,"pushed_at":"2026-02-12T17:26:18.000Z","size":1827,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-13T00:55:35.483Z","etag":null,"topics":["dependency-injection","electron","electronjs","vite"],"latest_commit_sha":null,"homepage":"https://metacurb.github.io/electron-ipc-bridge/","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/metacurb.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":"2026-01-27T18:23:56.000Z","updated_at":"2026-02-12T17:26:22.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/metacurb/electron-ipc-bridge","commit_stats":null,"previous_names":["opista/electron-ipc-controller","metacurb/electron-ipc-controller","metacurb/electron-ipc-bridge"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/metacurb/electron-ipc-bridge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metacurb%2Felectron-ipc-bridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metacurb%2Felectron-ipc-bridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metacurb%2Felectron-ipc-bridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metacurb%2Felectron-ipc-bridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/metacurb","download_url":"https://codeload.github.com/metacurb/electron-ipc-bridge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/metacurb%2Felectron-ipc-bridge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29596555,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T20:59:56.587Z","status":"ssl_error","status_checked_at":"2026-02-18T20:58:41.434Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["dependency-injection","electron","electronjs","vite"],"created_at":"2026-02-18T22:11:41.406Z","updated_at":"2026-02-18T22:11:42.036Z","avatar_url":"https://github.com/metacurb.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"apps/docs/static/img/logo.png\" alt=\"Electron IPC Bridge\" width=\"120\" /\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eElectron IPC Bridge\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Electron-2B2E3A?style=for-the-badge\u0026logo=electron\u0026logoColor=9FEAF9\" alt=\"Electron\" /\u003e\n  \u003cimg src=\"https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge\u0026logo=typescript\u0026logoColor=white\" alt=\"TypeScript\" /\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  A type-safe, class-based IPC framework for Electron. Inspired by NestJS.\u003cbr/\u003e\n  Define controllers in main, \u003cstrong\u003eautomatically\u003c/strong\u003e get fully typed APIs in the renderer.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://metacurb.github.io/electron-ipc-bridge/\"\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e\u003c/a\u003e ·\n  \u003ca href=\"https://metacurb.github.io/electron-ipc-bridge/quickstart\"\u003e\u003cstrong\u003eQuickstart\u003c/strong\u003e\u003c/a\u003e ·\n  \u003ca href=\"https://metacurb.github.io/electron-ipc-bridge/examples\"\u003e\u003cstrong\u003eExamples\u003c/strong\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n## At a Glance\n\n**Controller** (main process):\n\n```ts\nimport { IpcController, IpcHandle } from \"@electron-ipc-bridge/core\";\n\n@IpcController(\"users\")\nexport class UserController {\n  @IpcHandle()\n  async getUser(id: string) {\n    return { id, name: \"Alice\" };\n  }\n}\n```\n\n**Renderer**:\n\n```ts\nconst user = await window.ipc.users.getUser(\"123\");\nconsole.log(user.name); // \"Alice\" is fully typed, auto-completed\n```\n\n## Features\n\n- **Zero channel boilerplate:** channels are generated automatically\n- **Auto-generated renderer types:** the Vite plugin analyses your controllers and outputs `d.ts` declarations\n- **Parameter injection:** `@Sender()`, `@Window()`, `@RawEvent()`, `@Channel()`, and custom decorators\n- **No manual preload wiring:** `setupPreload()` handles everything\n- **DI-friendly:** bring your own container (TypeDI, NestJS, or a simple factory)\n\n## Install\n\n```bash\nnpm install @electron-ipc-bridge/core reflect-metadata\nnpm install -D @electron-ipc-bridge/vite-plugin\n```\n\n## Getting Started\n\nHead to the **[Quickstart guide](https://metacurb.github.io/electron-ipc-bridge/quickstart)** for full setup instructions, including TypeScript config, Vite plugin setup, preload wiring, and your first controller.\n\n## Documentation\n\nFull documentation is available at **[metacurb.github.io/electron-ipc-bridge](https://metacurb.github.io/electron-ipc-bridge/)**.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetacurb%2Felectron-ipc-bridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmetacurb%2Felectron-ipc-bridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetacurb%2Felectron-ipc-bridge/lists"}