-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtechradar.json
113 lines (113 loc) · 3.14 KB
/
techradar.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"title": "Consumer App Tech Radar",
"quadrants": [
{ "id": "1", "name": "Frontend Technologies" },
{ "id": "2", "name": "Backend Technologies" },
{ "id": "3", "name": "DevOps & Infrastructure" },
{ "id": "4", "name": "Data & Analytics" }
],
"rings": [
{ "id": "adopt", "name": "ADOPT", "color": "#93c47d" },
{ "id": "trial", "name": "TRIAL", "color": "#93d2c2" },
{ "id": "assess", "name": "ASSESS", "color": "#fbdb84" },
{ "id": "hold", "name": "HOLD", "color": "#efafa9" }
],
"entries": [
{
"id": "react",
"title": "React",
"description": "A JavaScript library for building user interfaces",
"key": "react",
"url": "https://reactjs.org",
"quadrant": "1",
"timeline": [
{
"moved": 1,
"ringId": "adopt",
"date": "2023-05-10",
"description": "React is mature and widely used for building UIs."
}
]
},
{
"id": "nodejs",
"title": "Node.js",
"description": "JavaScript runtime for building scalable backend services",
"key": "nodejs",
"url": "https://nodejs.org",
"quadrant": "2",
"timeline": [
{
"moved": 1,
"ringId": "adopt",
"date": "2023-04-15",
"description": "Node.js powers scalable backend systems."
}
]
},
{
"id": "kubernetes",
"title": "Kubernetes",
"description": "Container orchestration platform for automated deployment and scaling",
"key": "kubernetes",
"url": "https://kubernetes.io",
"quadrant": "3",
"timeline": [
{
"moved": 0,
"ringId": "trial",
"date": "2023-06-01",
"description": "Trialing Kubernetes for container orchestration."
}
]
},
{
"id": "airflow",
"title": "Apache Airflow",
"description": "Platform for orchestrating complex workflows and data pipelines",
"key": "airflow",
"url": "https://airflow.apache.org",
"quadrant": "4",
"timeline": [
{
"moved": 1,
"ringId": "adopt",
"date": "2023-02-12",
"description": "Airflow is used for managing data pipelines."
}
]
},
{
"id": "typescript",
"title": "TypeScript",
"description": "A strict syntactical superset of JavaScript with optional static typing",
"key": "typescript",
"url": "https://www.typescriptlang.org",
"quadrant": "1",
"timeline": [
{
"moved": 0,
"ringId": "adopt",
"date": "2023-05-05",
"description": "TypeScript provides type safety for frontend development."
}
]
},
{
"id": "graphql",
"title": "GraphQL",
"description": "A query language for APIs and a runtime for executing those queries",
"key": "graphql",
"url": "https://graphql.org",
"quadrant": "2",
"timeline": [
{
"moved": 1,
"ringId": "trial",
"date": "2023-03-20",
"description": "Trialing GraphQL for efficient data retrieval."
}
]
}
]
}