{"id":34180851,"url":"https://github.com/SparrowVic/ngx-genie","last_synced_at":"2025-12-16T03:01:42.257Z","repository":{"id":328505695,"uuid":"1115763220","full_name":"SparrowVic/ngx-genie","owner":"SparrowVic","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-14T01:37:21.000Z","size":241,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-15T08:12:37.700Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/SparrowVic.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-12-13T14:00:34.000Z","updated_at":"2025-12-14T20:37:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/SparrowVic/ngx-genie","commit_stats":null,"previous_names":["sparrowvic/ngx-genie"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/SparrowVic/ngx-genie","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SparrowVic%2Fngx-genie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SparrowVic%2Fngx-genie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SparrowVic%2Fngx-genie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SparrowVic%2Fngx-genie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SparrowVic","download_url":"https://codeload.github.com/SparrowVic/ngx-genie/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SparrowVic%2Fngx-genie/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27758763,"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-12-16T02:00:10.477Z","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":[],"created_at":"2025-12-15T14:00:21.320Z","updated_at":"2025-12-16T03:01:42.252Z","avatar_url":"https://github.com/SparrowVic.png","language":"TypeScript","funding_links":[],"categories":["Development Utilities","TypeScript"],"sub_categories":["Code Analysis"],"readme":"# 🧞‍♂️ GenieOS – Angular Dependency Inspector\n\n\u003e **Note:** This project is licensed under the **Apache License 2.0**.\n\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/user-attachments/assets/35bdc36a-67d2-4d3e-b7e1-ad7e095f037e\" alt=\"GenieOS Demo\" width=\"100%\"\u003e\n\u003c/div\u003e\n\n**GenieOS** (`ngx-genie`) is an advanced developer tool for the **Angular** framework, designed for visualizing, analyzing, and diagnosing the **Dependency Injection (DI)** system.\n\nIt works as an intelligent overlay on top of your application, allowing you to:\n\n* inspect the dependency injection tree structure in real time,\n* analyze the state of services,\n* observe relationships between components,\n* detect potential memory leaks and architectural issues.\n\n---\n\n## ✨ Key features\n\n* **Tree View**\n  A hierarchical view of the component tree and their Injectors (Element, Environment).\n\n* **Org Chart**\n  Visualization of the application structure as a classic organizational chart, making parent–child relationships easier to understand.\n\n* **Matrix View**\n  A powerful dependency matrix generated by a **Web Worker**.\n\n* **Constellation View**\n  An interactive force-directed graph presenting the dependency network as a constellation of nodes and connections.\n\n* **Diagnostics**\n  Automatic detection of anomalies (e.g. circular dependencies, singleton violations, heavy state).\n\n* **Live Inspector**\n  Real-time inspection of service state, including **Signals** and **Observable** values.\n\n* **Deep Focus**\n  A mode that isolates a single branch of the tree for easier analysis in large applications.\n\n---\n\n## ⚙️ Angular version compatibility\n\nGenieOS is currently **implemented against Angular 20**.\n\n### Current support\n\n* ✅ **Angular 20** – fully supported and recommended\n\n### Planned compatibility\n\nSupport for **earlier Angular versions** (e.g. Angular 17–19) is **planned**, but not yet available.\n\n\n---\n\n## 🚀 Quick start\n\n### Installation\n\nUsing **npm**:\n\n```bash\nnpm install ngx-genie --save-dev\n```\n\nUsing **yarn**:\n\n```bash\nyarn add ngx-genie --dev\n```\n\n---\n\n### Configuration\n\nAdd the provider to your application configuration (`app.config.ts`):\n\n```ts\nimport {ApplicationConfig} from '@angular/core';\nimport {provideGenie} from 'genie';\n\nexport const appConfig: ApplicationConfig = {\n  providers: [\n    provideGenie({\n      hotkey: 'F1',          // default: F1\n      enabled: true,         // default: true\n      visibleOnStart: false  // default: true\n    })\n  ]\n};\n```\n\nRun the application and press **F1** (or another configured hotkey).\n\n---\n\n## 📚 Documentation\n\nDetailed documentation is available in the **[`/docs`](./docs)** directory:\n\n* 📥 [Installation and configuration](./docs/installation.md)\n* 🛠️ [Feature overview](./docs/features.md)\n* 🧠 [Technical library overview](./docs/library.md)\n\n---\n\n## 🧪 Project status\n\nGenieOS is currently in an **experimental / early-stage** phase.\n\nThis is the **first public version** of the library and should be treated as a **proof of concept and evolving developer tool**, not a production-hardened framework.\n\n### Important notes\n\n* ❗ **No unit tests yet** – the library/plugin does **not currently include unit or integration tests**. Test coverage is planned for future releases.\n* 🧭 APIs and internal behavior may change between versions as the project stabilizes.\n* 🧠 The focus of the current version is **architecture exploration, UX experimentation, and real-world validation**.\n\n---\n\n## 🤖 AI disclaimer\n\nThis project was developed with the assistance of **Generative AI** tools.\nThe code, architecture, and documentation are the result of collaboration between the author and AI assistants.\n\nWhile best efforts were made to ensure quality and correctness, some patterns characteristic of AI-generated code may be present.\n\n*This project was developed with the assistance of AI tools. While human oversight was applied, some code patterns may reflect AI generation.*\n\n---\n\n## ⚖️ License\n\nThis project is licensed under the **Apache License 2.0**.\n\nYou are free to use GenieOS in **commercial and non-commercial projects**, including internal tooling, development workflows, and enterprise applications.\n\nThe license:\n\n* ✅ allows commercial use\n* ✅ allows modification and redistribution\n* ✅ includes an explicit patent grant\n* ❌ does not grant rights to use the GenieOS name or branding\n\nThe software is provided **\"AS IS\"**, without warranties or conditions of any kind.\n\nSee the **LICENSE** file for the full license text.\n\n---\n\n## 👤 Author\n\nWiktor Wróbel\n[@SparrowVic](https://github.com/SparrowVic)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSparrowVic%2Fngx-genie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSparrowVic%2Fngx-genie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSparrowVic%2Fngx-genie/lists"}