{"id":27320316,"url":"https://github.com/wox-team/wox-inject","last_synced_at":"2025-09-09T13:41:38.784Z","repository":{"id":182358813,"uuid":"667577514","full_name":"wox-team/wox-inject","owner":"wox-team","description":"React Dependency Injection library","archived":false,"fork":false,"pushed_at":"2024-11-06T21:39:04.000Z","size":8270,"stargazers_count":11,"open_issues_count":3,"forks_count":1,"subscribers_count":0,"default_branch":"canary","last_synced_at":"2025-08-18T17:54:15.954Z","etag":null,"topics":["dependency-injection","dependency-injection-container","dependency-inversion","di","react","react-dependency-injection"],"latest_commit_sha":null,"homepage":"https://wox.so","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/wox-team.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/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,"zenodo":null}},"created_at":"2023-07-17T20:39:45.000Z","updated_at":"2025-06-10T13:36:09.000Z","dependencies_parsed_at":"2024-06-06T16:42:12.720Z","dependency_job_id":"6bfb4f91-392f-41b9-933e-8250ec7afcb8","html_url":"https://github.com/wox-team/wox-inject","commit_stats":null,"previous_names":["wox-team/wox-inject"],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/wox-team/wox-inject","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wox-team%2Fwox-inject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wox-team%2Fwox-inject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wox-team%2Fwox-inject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wox-team%2Fwox-inject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wox-team","download_url":"https://codeload.github.com/wox-team/wox-inject/tar.gz/refs/heads/canary","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wox-team%2Fwox-inject/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274304658,"owners_count":25260714,"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-09T02:00:10.223Z","response_time":80,"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":["dependency-injection","dependency-injection-container","dependency-inversion","di","react","react-dependency-injection"],"created_at":"2025-04-12T09:46:42.155Z","updated_at":"2025-09-09T13:41:38.725Z","avatar_url":"https://github.com/wox-team.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg width=\"100%\" src=\"https://github.com/wox-team/wox-inject/assets/8842821/5323b472-15c9-4d2a-90b4-81e7663ebba1\" /\u003e\n\u003c/div\u003e\n\n\u003ch3 align=\"center\"\u003e\n  An open source Dependency Injection library.\n\u003c/h3\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca aria-label=\"contributors graph\" href=\"https://github.com/wox-team/wox-inject/graphs/contributors\"\u003e\n    \u003cimg alt=\"\" src=\"https://img.shields.io/github/contributors/wox-team/wox-inject.svg\" /\u003e\n  \u003c/a\u003e\n  \u003ca aria-label=\"last commit\" href=\"https://github.com/wox-team/wox-inject/commits/canary\"\u003e\n    \u003cimg alt=\"\" src=\n  \"https://img.shields.io/github/last-commit/wox-team/wox-inject.svg\" /\u003e\n  \u003c/a\u003e\n  \u003ca aria-label=\"license\" href=\"https://github.com/wox-team/wox-inject/blob/canary/LICENSE\"\u003e\n    \u003cimg alt=\"\" src=\"https://img.shields.io/github/license/wox-team/wox-inject.svg\" /\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n\u003cbr /\u003e\n\u003cbr /\u003e\n\nWox Inject empowers React apps with a versatile dependency injection library, promoting an alternative paradigm to handle complexity.\n\n```tsx\nimport { Injectable } from '@wox-team/wox-inject';\n\n@Injectable()\nclass GreeterService {\n  greet(val: string) {\n    console.log(val);\n  }\n}\n\nfunction App() {\n  const greeterService = useResolve(GreeterService);\n\n  return (\n    \u003cbutton type=\"button\" onClick={() =\u003e greeterService.greet('hello!')}\u003eclick me\u003c/button\u003e\n  );\n}\n```\n\n## Getting Started\n\nVisit [wox.so](https://wox.so) to get started with Wox Inject.\n\n\u003cbr /\u003e\n\n## What about SSR?\n\nRight now the focus is to provide stability for SPA usage. SSR will be on the roadmap.\n\n\u003cbr /\u003e\n\n## Contributing\n\nWant to contribute to wox inject? Our [contributing guide](https://github.com/wox-team/wox-inject/blob/canary/.github/CONTRIBUTING.md) has you covered.\n\n\u003cbr /\u003e\n\u003cbr /\u003e\n\u003cbr /\u003e\n\u003cbr /\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwox-team%2Fwox-inject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwox-team%2Fwox-inject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwox-team%2Fwox-inject/lists"}