{"id":13625289,"url":"https://github.com/zalando/tech-radar","last_synced_at":"2025-05-14T04:07:47.439Z","repository":{"id":38272804,"uuid":"56489714","full_name":"zalando/tech-radar","owner":"zalando","description":"Visualizing our technology choices","archived":false,"fork":false,"pushed_at":"2025-02-14T16:30:51.000Z","size":2219,"stargazers_count":1743,"open_issues_count":7,"forks_count":659,"subscribers_count":57,"default_branch":"master","last_synced_at":"2025-04-09T05:01:05.238Z","etag":null,"topics":["documentation"],"latest_commit_sha":null,"homepage":"https://opensource.zalando.com/tech-radar/","language":null,"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/zalando.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2016-04-18T08:18:25.000Z","updated_at":"2025-04-08T07:43:54.000Z","dependencies_parsed_at":"2023-01-31T07:15:44.261Z","dependency_job_id":"8e9b0453-9543-43f1-af86-ea2861a35a06","html_url":"https://github.com/zalando/tech-radar","commit_stats":{"total_commits":163,"total_committers":33,"mean_commits":"4.9393939393939394","dds":0.6748466257668712,"last_synced_commit":"696b599d4e28895404249b74692d35b7f7492f0a"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zalando%2Ftech-radar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zalando%2Ftech-radar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zalando%2Ftech-radar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zalando%2Ftech-radar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zalando","download_url":"https://codeload.github.com/zalando/tech-radar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254069444,"owners_count":22009553,"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":["documentation"],"created_at":"2024-08-01T21:01:53.522Z","updated_at":"2025-05-14T04:07:47.366Z","avatar_url":"https://github.com/zalando.png","language":null,"funding_links":[],"categories":["Others","documentation"],"sub_categories":[],"readme":"# Motivation\n\nAt [Zalando](http://zalando.de), we maintain a [public Tech\nRadar](http://zalando.github.io/tech-radar/) to help our engineering teams\nalign on technology choices. It is based on the [pioneering work\nby ThoughtWorks](https://www.thoughtworks.com/radar).\n\nThis repository contains the code to generate the visualization:\n[`radar.js`](/docs/radar.js) (based on [d3.js v4](https://d3js.org)).\nFeel free to use and adapt it for your own purposes.\n\n## Usage\n\n1. include `d3.js` and `radar.js`:\n\n```html\n\u003cscript src=\"https://d3js.org/d3.v4.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://zalando.github.io/tech-radar/release/radar-0.11.js\"\u003e\u003c/script\u003e\n```\n\n2. insert an empty `svg` tag:\n\n```html\n\u003csvg id=\"radar\"\u003e\u003c/svg\u003e\n```\n\n3. configure the radar visualization:\n\n```js\nradar_visualization({\n  repo_url: \"https://github.com/zalando/tech-radar\",\n  svg_id: \"radar\",\n  width: 1450,\n  height: 1000,\n  scale: 1.0,\n  colors: {\n    background: \"#fff\",\n    grid: \"#bbb\",\n    inactive: \"#ddd\"\n  },\n  // Some font families might lead to font size issues\n  // Arial, Helvetica, or Source Sans Pro seem to work well though\n  font_family: \"Arial, Helvetica\",\n  title: \"My Radar\",\n  quadrants: [\n    { name: \"Bottom Right\" },\n    { name: \"Bottom Left\" },\n    { name: \"Top Left\" },\n    { name: \"Top Right\" }\n  ],\n  rings: [\n    { name: \"INNER\",  color: \"#5ba300\" },\n    { name: \"SECOND\", color: \"#009eb0\" },\n    { name: \"THIRD\",  color: \"#c7ba00\" },\n    { name: \"OUTER\",  color: \"#e09b96\" }\n  ],\n  print_layout: true,\n  links_in_new_tabs: true,\n  entries: [\n   {\n      label: \"Some Entry\",\n      quadrant: 3,          // 0,1,2,3 (counting clockwise, starting from bottom right)\n      ring: 2,              // 0,1,2,3 (starting from inside)\n      moved: -1             // -1 = moved out (triangle pointing down)\n                            //  0 = not moved (circle)\n                            //  1 = moved in  (triangle pointing up)\n                            //  2 = new       (star)\n   },\n    // ...\n  ]\n});\n```\n\nEntries are positioned automatically so that they don't overlap. The \"scale\" parameter can help\nin adjusting the size of the radar.\n\nAs a working example, you can check out `docs/index.html` \u0026mdash; the source of our [public Tech\nRadar](http://zalando.github.io/tech-radar/).\n\n## Deployment\n\nTech Radar is a static page, so it can be deployed using any hosting provider of your choice offering static page hosting.\n\n## Local Development\n\n1. install dependencies with yarn (or npm):\n\n```\nyarn \n```\n\n2. start local dev server:\n\n```\nyarn start\n```\n\n3. your default browser should automatically open and show the url\n \n```\nhttp://localhost:3000/\n```\n\n## License\n\n```\nThe MIT License (MIT)\n\nCopyright (c) 2017-2025 Zalando SE\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzalando%2Ftech-radar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzalando%2Ftech-radar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzalando%2Ftech-radar/lists"}