{"id":22308429,"url":"https://github.com/42bytelabs/konarr-client","last_synced_at":"2026-02-09T21:08:37.948Z","repository":{"id":264923131,"uuid":"840685201","full_name":"42ByteLabs/konarr-client","owner":"42ByteLabs","description":"Konarr Frontend Client","archived":false,"fork":false,"pushed_at":"2025-11-26T23:39:17.000Z","size":654,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-11-29T18:17:51.711Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/42ByteLabs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"2024-08-10T11:21:50.000Z","updated_at":"2025-11-26T23:39:19.000Z","dependencies_parsed_at":"2024-12-16T23:49:37.471Z","dependency_job_id":"eb6e65fa-fd25-4bfb-acec-af3aa76509d7","html_url":"https://github.com/42ByteLabs/konarr-client","commit_stats":null,"previous_names":["42bytelabs/konarr-client"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/42ByteLabs/konarr-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/42ByteLabs%2Fkonarr-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/42ByteLabs%2Fkonarr-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/42ByteLabs%2Fkonarr-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/42ByteLabs%2Fkonarr-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/42ByteLabs","download_url":"https://codeload.github.com/42ByteLabs/konarr-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/42ByteLabs%2Fkonarr-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29281444,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T19:05:41.198Z","status":"ssl_error","status_checked_at":"2026-02-09T19:05:37.449Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2024-12-03T20:14:00.274Z","updated_at":"2026-02-09T21:08:37.923Z","avatar_url":"https://github.com/42ByteLabs.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- markdownlint-disable --\u003e\n\u003cdiv align=\"center\"\u003e\n\u003ch1\u003eKonarr Frontend Client\u003c/h1\u003e\n\n[![GitHub](https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge\u0026logo=github\u0026logoColor=white)][github]\n[![Crates.io Version](https://img.shields.io/crates/v/konarr?style=for-the-badge)][crates-io]\n[![Crates.io Downloads (recent)](https://img.shields.io/crates/dr/konarr?style=for-the-badge)][crates-io]\n[![GitHub Stars](https://img.shields.io/github/stars/42ByteLabs/konarr?style=for-the-badge)][github]\n[![GitHub Issues](https://img.shields.io/github/issues/42ByteLabs/konarr-client?style=for-the-badge)][github-issues]\n[![Licence](https://img.shields.io/github/license/42ByteLabs/konarr?style=for-the-badge)][license]\n\n⚠️  This is currently a work in progress and still in the early stages of development ⚠️\n\n\u003c/div\u003e\n\u003c!-- markdownlint-restore --\u003e\n\n## Overview\n\n[Konarr][konarr] is a simple, easy-to-use web interface for monitoring your servers, clusters, and containers for supply chain attacks.\nIt is designed to be lightweight and fast, with minimal resource usage.\n\nThis repository contains the client-side code for [Konarr][konarr].\n\n## 🚀 Local Development\n\nTo run the client locally, you will need to have the following installed:\n\n- [Node.js][node] \u0026 [npm][npm]\n\nOnce you have the above installed, you can run the following commands:\n\n```bash\nnpm install\n```\n\nThis will install all the required dependencies.\n\nTo start the development server, run:\n\n```bash\nnpm run dev\n```\n\nThis will start the development server on `http://localhost` and you can access the client from your browser.\n\n### 🌐 Setting up the Server\n\nTo access a Konarr Server instance, you will need to have the [Konarr Server][github] running.\nCheckout the [Konarr Server][github] repository for more information on how to run the server.\n\nYou can set the server URL by creating a `.env` file in the root of the project and adding the following:\n\n```env\nVITE_SERVER_BASE_URL=http://localhost:8000/api\n```\n\nReplace `http://localhost:8000/api` with the URL of your server.\n\n## ✨ Components\n\nHere is the core components used by Konarr:\n\n- [VueJS][vue]\n- [Tailwind][tailwind]\n- [Material Design Icons (MDI)][mdi]\n- [Heroicons][heroicons]\n- [HeadlessUI][headlessui]\n\n## ❤️  Maintainers / Contributors\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://geekmasher.dev\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/2772944?v=4?s=100\" width=\"100px;\" alt=\"Mathew Payne\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMathew Payne\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#code-GeekMasher\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#review-GeekMasher\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\n## 🦸 Support\n\nPlease create [GitHub Issues][github-issues] if there are bugs or feature requests.\n\nThis project uses [Semantic Versioning (v2)][semver] and with major releases, breaking changes will occur.\n\n## 📓 License\n\nThis project is licensed under the terms of the Apache2 open source license.\nPlease refer to [Apache2][license] for the full terms.\n\n\u003c!-- Resources --\u003e\n\n[license]: ./LICENSE\n[crates-io]: https://crates.io/crates/konarr\n[docs]: https://docs.rs/konarr/latest/konarr\n[semver]: https://semver.org/\n\n[konarr]: https://github.com/42ByteLabs/konarr\n[github]: https://github.com/42ByteLabs/konarr-client\n[github-issues]: https://github.com/42ByteLabs/konarr-client/issues\n\n[vue]: https://vuejs.org/\n[node]: https://nodejs.org/\n[tailwind]: https://tailwindcss.com/\n[mdi]: https://pictogrammers.com/library/mdi/\n[heroicons]: https://heroicons.com/\n[headlessui]: https://headlessui.com/v1/vue\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F42bytelabs%2Fkonarr-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F42bytelabs%2Fkonarr-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F42bytelabs%2Fkonarr-client/lists"}