{"id":13929162,"url":"https://github.com/container-registry/backstage-plugin-harbor","last_synced_at":"2026-02-11T17:24:08.609Z","repository":{"id":37261074,"uuid":"377732988","full_name":"container-registry/backstage-plugin-harbor","owner":"container-registry","description":"Backstage plugin to show you information about your docker images within Harbor.","archived":false,"fork":false,"pushed_at":"2024-07-26T09:08:41.000Z","size":384,"stargazers_count":19,"open_issues_count":17,"forks_count":24,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-10-23T11:52:25.087Z","etag":null,"topics":["backstage","backstage-plugin","plugin"],"latest_commit_sha":null,"homepage":"","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/container-registry.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-06-17T06:49:37.000Z","updated_at":"2025-08-28T02:55:35.000Z","dependencies_parsed_at":"2023-07-16T17:16:47.511Z","dependency_job_id":"ebf0fba6-16dd-41b0-bcd6-91d0d81db14a","html_url":"https://github.com/container-registry/backstage-plugin-harbor","commit_stats":null,"previous_names":["bestseller/backstage-plugin-harbor"],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/container-registry/backstage-plugin-harbor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/container-registry%2Fbackstage-plugin-harbor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/container-registry%2Fbackstage-plugin-harbor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/container-registry%2Fbackstage-plugin-harbor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/container-registry%2Fbackstage-plugin-harbor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/container-registry","download_url":"https://codeload.github.com/container-registry/backstage-plugin-harbor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/container-registry%2Fbackstage-plugin-harbor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29339330,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T16:14:43.024Z","status":"ssl_error","status_checked_at":"2026-02-11T16:14:15.258Z","response_time":97,"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":["backstage","backstage-plugin","plugin"],"created_at":"2024-08-07T18:02:09.525Z","updated_at":"2026-02-11T17:24:08.593Z","avatar_url":"https://github.com/container-registry.png","language":"TypeScript","funding_links":[],"categories":["others"],"sub_categories":[],"readme":"# Backstage Harbor plugin\n\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=container-registry_backstage-plugin-harbor\u0026metric=alert_status)](https://sonarcloud.io/summary/new_code?id=container-registry_backstage-plugin-harbor)\n[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=container-registry_backstage-plugin-harbor\u0026metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=container-registry_backstage-plugin-harbor)\n[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=container-registry_backstage-plugin-harbor\u0026metric=security_rating)](https://sonarcloud.io/summary/new_code?id=container-registry_backstage-plugin-harbor)\n\n[//]: # (![npm]\u0026#40;https://img.shields.io/npm/dt/@bestsellerit/backstage-plugin-harbor\u0026#41;)\n\nWelcome to the harbor plugin!\nThis plugin will show you information about your docker images within harbor\n\n![Dashboard](docs/img/dashboard.png)\n![Docker Image](docs/img/widget.png)\n\n## Getting started\n\n### Enabling frontend\n\n```bash\nyarn --cwd packages/app add @bestsellerit/backstage-plugin-harbor\n```\n\n```ts\n// packages/app/src/plugins.ts\nexport { plugin as harbor } from '@bestsellerit/backstage-plugin-harbor'\n```\n\n```ts\n// packages/app/src/components/catalog/EntityPage.tsx\nimport {\n  HarborPage,\n  HarborWidget,\n  isHarborAvailable,\n} from '@bestsellerit/backstage-plugin-harbor'\n\nconst serviceEntityPage = (\n  \u003cEntityPageLayout\u003e\n    // ...\n    \u003cEntityLayout.Route path=\"/harbor\" title=\"Harbor\" if={isHarborAvailable}\u003e\n      \u003cHarborPage /\u003e\n    \u003c/EntityLayout.Route\u003e\n  \u003c/EntityPageLayout\u003e\n)\n```\n\n```ts\n// packages/app/src/components/catalog/EntityPage.tsx\n\nconst overviewContent = (\n  \u003cGrid container spacing={6} alignItems=\"stretch\"\u003e\n    // ...\n    \u003cEntitySwitch\u003e\n      \u003cEntitySwitch.Case if={isHarborAvailable}\u003e\n        \u003cGrid item\u003e\n          \u003cHarborWidget /\u003e\n        \u003c/Grid\u003e\n      \u003c/EntitySwitch.Case\u003e\n    \u003c/EntitySwitch\u003e\n    ...\n  \u003c/Grid\u003e\n)\n```\n\n### Enabling backend\n\nSee [backstage-plugin-harbor-backend](https://github.com/container-registry/backstage-plugin-harbor-backend#enabling-backend).\n\n## Contributing\n\nEveryone is welcome to contribute to this repository. Feel free to raise [issues](https://github.com/BESTSELLER/backstage-plugin-harbor/issues) or to submit [Pull Requests.](https://github.com/BESTSELLER/backstage-plugin-harbor/pulls)\n\n## History\n\nThis backsage plugin was initialy created by [BESTSELLER](https://github.com/BESTSELLER) and transferred to [container-registry](https://github.com/container-registry).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontainer-registry%2Fbackstage-plugin-harbor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcontainer-registry%2Fbackstage-plugin-harbor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontainer-registry%2Fbackstage-plugin-harbor/lists"}