{"id":13411358,"url":"https://github.com/PGBI/kong-dashboard","last_synced_at":"2025-03-14T17:30:42.918Z","repository":{"id":37743053,"uuid":"46101593","full_name":"PGBI/kong-dashboard","owner":"PGBI","description":"Dashboard for managing Kong gateway","archived":false,"fork":false,"pushed_at":"2020-10-22T09:43:21.000Z","size":920,"stargazers_count":2176,"open_issues_count":55,"forks_count":391,"subscribers_count":87,"default_branch":"3.0","last_synced_at":"2024-07-30T20:39:42.573Z","etag":null,"topics":["kong","kong-dashboard","kong-gateway"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/PGBI.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":null,"security":null,"support":null}},"created_at":"2015-11-13T05:17:02.000Z","updated_at":"2024-07-11T04:46:16.000Z","dependencies_parsed_at":"2022-07-14T00:50:40.060Z","dependency_job_id":null,"html_url":"https://github.com/PGBI/kong-dashboard","commit_stats":null,"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PGBI%2Fkong-dashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PGBI%2Fkong-dashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PGBI%2Fkong-dashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PGBI%2Fkong-dashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PGBI","download_url":"https://codeload.github.com/PGBI/kong-dashboard/tar.gz/refs/heads/3.0","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243618600,"owners_count":20320264,"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","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":["kong","kong-dashboard","kong-gateway"],"created_at":"2024-07-30T20:01:13.125Z","updated_at":"2025-03-14T17:30:42.585Z","avatar_url":"https://github.com/PGBI.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","Tools","\u003ca name=\"JavaScript\"\u003e\u003c/a\u003eJavaScript"],"sub_categories":["GUI"],"readme":"# Kong Dashboard\n\n[![Build Status](https://travis-ci.org/PGBI/kong-dashboard.svg?branch=3.0)](https://travis-ci.org/PGBI/kong-dashboard)\n\n[**Kong**](https://getkong.org/) is a scalable, open source API Layer (also known as a API Gateway, or API Middleware).\nKong runs in front of any RESTful API and provide functionalities\nand services such as requests routing, authentication, rate limiting, etc.\n\n**Kong dashboard** is a GUI that will let you manage your Kong Gateway setup.\n\n## Compatibility matrix\n\n| Kong-Dashboard versions | Kong versions | Node versions |\n|--------------|------------------------------|--------------|\n| 1.x.x        | \u003e= 0.6, \u003c 0.10 |              |\n| 2.x.x        | 0.10           |              |\n| 3.0.x        | \u003e= 0.9, \u003c0.12  | \u003e= 6.0.0     |\n| 3.1.x, 3.2.x | \u003e= 0.9, \u003c0.13  | \u003e= 6.0.0     |\n| 3.3.x, 3.4.x | \u003e= 0.9, \u003c0.14  | \u003e= 6.0.0     |\n| 3.5.x        | \u003e= 0.9, \u003c0.15  | \u003e= 6.0.0     |    \n| 3.6.x        | \u003e= 0.9, \u003c2.0.0 | \u003e= 6.0.0     |    \n\nNotes:\n* Kong Dashboard 3.3.0 is only partially compatible with Kong 0.13. It does not support the new Service and Route\nobjects introduced in Kong 0.13.\n\n## Prerequisites\n\nYou will need:\n\n1. a running Kong gateway. https://getkong.org/install/\n2. nodejs and npm, or docker\n\n## Installation\n\n### Using npm\n\n```bash\n# Install Kong Dashboard\nnpm install -g kong-dashboard\n\n# Start Kong Dashboard\nkong-dashboard start --kong-url http://kong:8001\n\n# Start Kong Dashboard on a custom port\nkong-dashboard start \\\n  --kong-url http://kong:8001 \\\n  --port [port]\n\n# Start Kong Dashboard with basic auth\nkong-dashboard start \\\n  --kong-url http://kong:8001 \\\n  --basic-auth user1=password1 user2=password2\n\n# See full list of start options\nkong-dashboard start --help\n```\n\n### Using Docker\n\n[![](https://images.microbadger.com/badges/image/pgbi/kong-dashboard.svg)](https://microbadger.com/images/pgbi/kong-dashboard \"Get your own image badge on microbadger.com\")\n\n```bash\n# Start Kong Dashboard\ndocker run --rm -p 8080:8080 pgbi/kong-dashboard start --kong-url http://kong:8001\n\n# Start Kong Dashboard on a custom port\ndocker run --rm -p [port]:8080 pgbi/kong-dashboard start --kong-url http://kong:8001\n\n# Start Kong Dashboard with basic auth\ndocker run --rm -p 8080:8080 pgbi/kong-dashboard start \\\n  --kong-url http://kong:8001\n  --basic-auth user1=password1 user2=password2\n\n# See full list of start options\ndocker run --rm -p 8080:8080 pgbi/kong-dashboard start --help\n```\n\n## Use\n\nYou can now browse Kong Dashboard at http://localhost:8080\n\n# Contributing\n\nIf you consider contributing to Kong Dashboard by reporting a bug, or submitting a patch, please checkout the\n[contribution document](./CONTRIBUTING.md) for guidance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPGBI%2Fkong-dashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FPGBI%2Fkong-dashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPGBI%2Fkong-dashboard/lists"}