All Projects → zalando → Tech Radar

zalando / Tech Radar

Licence: mit
Visualizing our technology choices

Projects that are alternatives of or similar to Tech Radar

Docs
CakePHP CookBook
Stars: ✭ 653 (-17.03%)
Mutual labels:  documentation
Wobike
Documentation of Bike Sharing APIs 🚴🛴🛵
Stars: ✭ 705 (-10.42%)
Mutual labels:  documentation
Nvim Lua Guide
A guide to using Lua in Neovim
Stars: ✭ 750 (-4.7%)
Mutual labels:  documentation
Docs
Documentation of Vercel and other services
Stars: ✭ 663 (-15.76%)
Mutual labels:  documentation
Devdocs
API Documentation Browser
Stars: ✭ 27,208 (+3357.18%)
Mutual labels:  documentation
Awesome Sphinxdoc
A curated list of awesome tools for Sphinx Python Documentation Generator
Stars: ✭ 716 (-9.02%)
Mutual labels:  documentation
Reactjs.org
The React documentation website
Stars: ✭ 6,697 (+750.95%)
Mutual labels:  documentation
Kin Openapi
OpenAPI 3.0 implementation for Go (parsing, converting, validation, and more)
Stars: ✭ 776 (-1.4%)
Mutual labels:  documentation
Wtfpython
What the f*ck Python? 😱
Stars: ✭ 27,762 (+3427.57%)
Mutual labels:  documentation
Easybook
Book publishing as easy as it should be (built with Symfony components)
Stars: ✭ 744 (-5.46%)
Mutual labels:  documentation
Running Elasticsearch Fun Profit
A book about running Elasticsearch
Stars: ✭ 664 (-15.63%)
Mutual labels:  documentation
Cheat.sh
the only cheat sheet you need
Stars: ✭ 27,798 (+3432.15%)
Mutual labels:  documentation
Portray
Your Project with Great Documentation.
Stars: ✭ 726 (-7.75%)
Mutual labels:  documentation
Bootstrap4 Offline Docs
Bootstrap 4.4 offline documentation
Stars: ✭ 655 (-16.77%)
Mutual labels:  documentation
Optic
Optic documents and tests your API as you build it
Stars: ✭ 760 (-3.43%)
Mutual labels:  documentation
Website
🌐 The Babel documentation website
Stars: ✭ 631 (-19.82%)
Mutual labels:  documentation
Standardese
A (work-in-progress) nextgen Doxygen for C++
Stars: ✭ 713 (-9.4%)
Mutual labels:  documentation
Bookstack
A platform to create documentation/wiki content built with PHP & Laravel
Stars: ✭ 7,733 (+882.59%)
Mutual labels:  documentation
Zalando Howto Open Source
Open Source guidance from Zalando, Europe's largest online fashion platform
Stars: ✭ 767 (-2.54%)
Mutual labels:  documentation
Documentation
Documentation for the PureScript language, compiler, and tools.
Stars: ✭ 726 (-7.75%)
Mutual labels:  documentation

Motivation

At Zalando, we maintain a public Tech Radar to help our engineering teams align on technology choices. It is based on the pioneering work by ThoughtWorks.

This repository contains the code to generate the visualization: radar.js (based on d3.js v4). Feel free to use and adapt it for your own purposes.

Usage

  1. include d3.js and radar.js:
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="http://zalando.github.io/tech-radar/release/radar-0.5.js"></script>
  1. insert an empty svg tag:
<svg id="radar"></svg>
  1. configure the radar visualization:
radar_visualization({
  svg_id: "radar",
  width: 1450,
  height: 1000,
  colors: {
    background: "#fff",
    grid: "#bbb",
    inactive: "#ddd"
  },
  title: "My Radar",
  quadrants: [
    { name: "Bottom Right" },
    { name: "Bottom Left" },
    { name: "Top Left" },
    { name: "Top Right" }
  ],
  rings: [
    { name: "INNER",  color: "#93c47d" },
    { name: "SECOND", color: "#b7e1cd" },
    { name: "THIRD",  color: "#fce8b2" },
    { name: "OUTER",  color: "#f4c7c3" }
  ],
  print_layout: true,
  entries: [
   {
      label: "Some Entry",
      quadrant: 3,          // 0,1,2,3 (counting clockwise, starting from bottom right)
      ring: 2,              // 0,1,2,3 (starting from inside)
      moved: -1             // -1 = moved out (triangle pointing down)
                            //  0 = not moved (circle)
                            //  1 = moved in  (triangle pointing up)
   },
    // ...
  ]
});

Entries are positioned automatically so that they don't overlap.

As a working example, you can check out docs/index.html — the source of our public Tech Radar.

Local Development

  1. install dependencies with yarn (or npm):
yarn 
  1. start local dev server:
yarn start
  1. your default browser should automatically open and show the url
http://localhost:3000/

License

The MIT License (MIT)

Copyright (c) 2017 Zalando SE

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].