-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathskillBasedRoadmap.ts
More file actions
403 lines (401 loc) Β· 18.6 KB
/
skillBasedRoadmap.ts
File metadata and controls
403 lines (401 loc) Β· 18.6 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
// {
// roadmaps = [
// {
// "id": "HTML",
// "title": "HTML Roadmap",
// "description": "Learn the basics of HTML and build accessible, semantic web pages.",
// "steps": [
// { "id": "html-basics", "title": "HTML Basics", "description": ""},
// { "id": "semantic-html", "title": "Semantic HTML", "description": ""},
// { "id": "forms", "title": "HTML Forms and Inputs", "description": ""},
// { "id": "multimedia", "title": "Embedding Multimedia", "description": ""},
// { "id": "seo", "title": "SEO Best Practices", "description": "" }
// ]
// },
// {
// "id": "css",
// "title": "CSS Roadmap",
// "description": "Style your web pages with CSS, learn layouts, animations, and responsive design.",
// "steps": [
// { "id": "css-basics", "title": "CSS Basics", "description": ""},
// { "id": "selectors", "title": "CSS Selectors and Specificity", "description": ""},
// { "id": "box-model", "title": "CSS Box Model", "description": ""},
// { "id": "layouts", "title": "Flexbox and Grid Layouts", "description": ""},
// { "id": "animations", "title": "CSS Animations and Transitions", "description": "" }
// ]
// },
// {
// "id": "javascript",
// "title": "JavaScript Roadmap",
// "description": "Master JavaScript, the backbone of dynamic web applications.",
// "steps": [
// { "id": "js-basics", "title": "JavaScript Basics", "description": ""},
// { "id": "dom", "title": "DOM Manipulation", "description": ""},
// { "id": "es6", "title": "ES6 and Beyond", "description": ""},
// { "id": "async", "title": "Asynchronous JavaScript (Promises, Async/Await)", "description": ""},
// { "id": "error-handling", "title": "Error Handling and Debugging", "description": "" }
// ]
// },
// {
// "id": "typescript",
// "title": "TypeScript Roadmap",
// "description": "Build robust applications with TypeScript's static typing.",
// "steps": [
// { "id": "ts-basics", "title": "TypeScript Basics", "description": ""},
// { "id": "types", "title": "Working with Types and Interfaces", "description": ""},
// { "id": "generics", "title": "Generics in TypeScript", "description": ""},
// { "id": "modules", "title": "Modules and Namespaces", "description": ""},
// { "id": "advanced-types", "title": "Advanced Types", "description": "" }
// ]
// },
// {
// "id": "tailwindcss",
// "title": "TailwindCSS Roadmap",
// "description": "Style your applications efficiently using utility-first CSS.",
// "steps": [
// { "id": "tailwind-setup", "title": "Setting Up TailwindCSS", "description": "" },
// { "id": "utilities", "title": "Core Utility Classes", "description": "" },
// { "id": "responsive-design", "title": "Responsive Design with Tailwind", "description": "" },
// { "id": "components", "title": "Custom Components", "description": "" },
// { "id": "plugins", "title": "Using Plugins and Extending Tailwind","description": "" }
// ]
// },
// {
// "id": "sql",
// "title": "SQL Roadmap",
// "description": "Learn SQL for querying and managing relational databases.",
// "steps": [
// { "id": "sql-basics", "title": "SQL Basics (SELECT, INSERT, UPDATE, DELETE)", "description": ""},
// { "id": "joins", "title": "Working with Joins", "description": ""},
// { "id": "indexes", "title": "Indexes and Performance Optimization", "description": ""},
// { "id": "transactions", "title": "Transactions and ACID Properties", "description": ""},
// { "id": "functions", "title": "Stored Procedures and Functions", "description": "" }
// ]
// },
// {
// "id": "postgresql",
// "title": "PostgreSQL Roadmap",
// "description": "Master PostgreSQL for advanced database management and features.",
// "steps": [
// { "id": "pg-setup", "title": "Setting Up PostgreSQL", "description": ""},
// { "id": "pg-queries", "title": "Writing Queries in PostgreSQL", "description": ""},
// { "id": "pg-extensions", "title": "Using Extensions (e.g., PostGIS)", "description": ""},
// { "id": "pg-backups", "title": "Backup and Restore", "description": ""},
// { "id": "pg-optimization", "title": "Performance Tuning", "description": "" }
// ]
// },
// {
// "id": "mongodb",
// "title": "MongoDB Roadmap",
// "description": "Learn MongoDB for NoSQL database solutions.",
// "steps": [
// { "id": "mongodb-basics", "title": "MongoDB Basics", "description": ""},
// { "id": "crud", "title": "CRUD Operations in MongoDB", "description": ""},
// { "id": "indexes", "title": "Indexes in MongoDB", "description": ""},
// { "id": "aggregation", "title": "Aggregation Pipelines", "description": ""},
// { "id": "replication", "title": "Replication and Sharding", "description": "" }
// ]
// },
// {
// "id": "prismadb",
// "title": "PrismaDB Roadmap",
// "description": "Use Prisma for modern database management in your applications.",
// "steps": [
// { "id": "prisma-setup", "title": "Setting Up Prisma", "description": ""},
// { "id": "prisma-queries", "title": "Querying with Prisma", "description": ""},
// { "id": "prisma-relations", "title": "Managing Relations in Prisma", "description": ""},
// { "id": "prisma-migrations", "title": "Database Migrations", "description": ""},
// { "id": "prisma-advanced", "title": "Advanced Prisma Features", "description": "" }
// ]
// },
// {
// "id": "nextjs",
// "title": "Next.js Roadmap",
// "description": "Learn Next.js for building modern server-rendered React applications.",
// "steps": [
// { "id": "nextjs-setup", "title": "Setting Up Next.js", "description": ""},
// { "id": "pages", "title": "Pages and Routing", "description": ""},
// { "id": "api-routes", "title": "API Routes", "description": ""},
// { "id": "server-side", "title": "Server-Side Rendering and Static Generation", "description": ""},
// { "id": "next-auth", "title": "Authentication in Next.js", "description": "" }
// ]
// },
// {
// "id": "reactjs",
// "title": "React.js Roadmap",
// "description": "Master React.js for building dynamic, reusable components.",
// "steps": [
// { "id": "react-basics", "title": "React Basics", "description": ""},
// { "id": "state-management", "title": "State Management with Hooks", "description": ""},
// { "id": "props", "title": "Props and Component Communication", "description": ""},
// { "id": "routing", "title": "Routing with React Router", "description": ""},
// { "id": "optimization", "title": "Performance Optimization", "description": "" }
// ]
// }
// ]
// },
// {
// backendRoadmap =[
// {
// "roadmap_id": "frontend",
// "title": "Frontend ",
// "description": "Roadmap for Frontend Developers",
// "difficulty": "Intermediate",
// "estimated_time_to_finish": "3-6 months",
// "type": "role",
// "inConstruction": false,
// "$id": "671fd87d0002abbed856",
// "$createdAt": "2024-10-28T18:31:25.270+00:00",
// "$updatedAt": "2025-04-10T14:21:46.185+00:00",
// "$permissions": [],
// "creator": null,
// "savedBy": [
// {
// "$id": "67f57125001764d1d869",
// "$createdAt": "2025-04-08T18:55:33.895+00:00",
// "$updatedAt": "2025-04-08T18:55:33.895+00:00",
// "$permissions": [
// "read(\"user:67e4d5ed00159896e1f0\")",
// "update(\"user:67e4d5ed00159896e1f0\")",
// "delete(\"user:67e4d5ed00159896e1f0\")"
// ],
// "user": {
// "accountId": "67e4d5ed00159896e1f0",
// "name": "User_Name",
// "email": "user@gmail.com",
// "username": "user_name",
// "imageId": null,
// "bio": null,
// "imageUrl": "https://cloud.appwrite.io/v1/avatars/initials?name=User_Name&project=6713db6600030e21eb99&name=User_Name&project=6713db6600030e21eb99",
// "$id": "67e4d5ee001ad4ac4347",
// "$createdAt": "2025-03-27T04:37:05.796+00:00",
// "$updatedAt": "2025-04-02T17:27:50.257+00:00",
// "$permissions": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "6717e029003c2d085bb3"
// },
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671bfbab001e47370585"
// },
// {
// "$id": "67fe97b6001ac7120a2a",
// "$createdAt": "2025-04-15T17:30:35.898+00:00",
// "$updatedAt": "2025-04-15T17:30:35.898+00:00",
// "$permissions": [
// "read(\"user:67e4d5ed00159896e1f0\")",
// "update(\"user:67e4d5ed00159896e1f0\")",
// "delete(\"user:67e4d5ed00159896e1f0\")"
// ],
// "user": {
// "accountId": "67e4d5ed00159896e1f0",
// "name": "User_Name",
// "email": "user@gmail.com",
// "username": "user_name",
// "imageId": null,
// "bio": null,
// "imageUrl": "https://cloud.appwrite.io/v1/avatars/initials?name=User_Name&project=6713db6600030e21eb99&name=User_Name&project=6713db6600030e21eb99",
// "$id": "67e4d5ee001ad4ac4347",
// "$createdAt": "2025-03-27T04:37:05.796+00:00",
// "$updatedAt": "2025-04-02T17:27:50.257+00:00",
// "$permissions": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "6717e029003c2d085bb3"
// },
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671bfbab001e47370585"
// }
// ],
// "nodes": [
// {
// "nodeId": "node_101",
// "title": "HTML Basics",
// "description": "Introduction to HTML structure and tags.",
// "type": "checkpoint",
// "$id": "671fd8e60025a1405a9c",
// "$createdAt": "2024-10-28T18:33:10.787+00:00",
// "$updatedAt": "2024-10-28T18:33:10.787+00:00",
// "$permissions": [],
// "resources": [
// {
// "title": "HTML Beginner Guide",
// "description": "HTML Beginner Guide",
// "type": "article",
// "url": "https://blog.hubspot.com/website/html",
// "difficulty": "Intermediate",
// "tag": "article",
// "$id": "671fe2d900305f450cd1",
// "$createdAt": "2024-10-28T19:15:37.965+00:00",
// "$updatedAt": "2024-10-30T09:17:40.519+00:00",
// "$permissions": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671cb0910004609a76a6"
// },
// {
// "title": "HTML Basics Video",
// "description": "HTML Basics Video",
// "type": "video",
// "url": "https://www.youtube.com/watch?v=kUMe1FH4CHE",
// "difficulty": "easy",
// "tag": "video",
// "$id": "671fe3370018128d74b1",
// "$createdAt": "2024-10-28T19:17:11.517+00:00",
// "$updatedAt": "2024-10-30T09:17:40.500+00:00",
// "$permissions": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671cb0910004609a76a6"
// }
// ],
// "related_node": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671c6f83001893b39c51"
// },
// {
// "nodeId": "node_102",
// "title": "CSS Basics",
// "description": "Learn the basics of CSS and how to style HTML.",
// "type": "checkpoint",
// "$id": "6720af4e00120d7609aa",
// "$createdAt": "2024-10-29T09:47:58.362+00:00",
// "$updatedAt": "2024-10-29T09:47:58.362+00:00",
// "$permissions": [],
// "resources": [
// {
// "title": "CSS Basics Tutorial",
// "description": "CSS Basics Tutorial",
// "type": "article",
// "url": "https://www.w3schools.com/css/css_intro.asp",
// "difficulty": "Intermediate",
// "tag": "article",
// "$id": "6720b0870000d80b1bc3",
// "$createdAt": "2024-10-29T09:53:11.068+00:00",
// "$updatedAt": "2024-10-29T09:53:11.068+00:00",
// "$permissions": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671cb0910004609a76a6"
// },
// {
// "title": "Learn Flexbox by Game",
// "description": null,
// "type": "game",
// "url": "https://flexboxfroggy.com",
// "difficulty": "easy",
// "tag": "game",
// "$id": "6727bb7e002749508d08",
// "$createdAt": "2024-11-03T18:05:55.176+00:00",
// "$updatedAt": "2024-11-12T15:20:18.114+00:00",
// "$permissions": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671cb0910004609a76a6"
// }
// ],
// "related_node": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671c6f83001893b39c51"
// },
// {
// "nodeId": "node_103",
// "title": "JavaScript Basics",
// "description": "Get started with JavaScript programming.",
// "type": "checkpoint",
// "$id": "6720af9b0028ec1096d4",
// "$createdAt": "2024-10-29T09:49:15.697+00:00",
// "$updatedAt": "2024-10-29T09:49:15.697+00:00",
// "$permissions": [],
// "resources": [
// {
// "title": "JavaScript Introduction",
// "description": "JavaScript Introduction",
// "type": "article",
// "url": "https://www.w3schools.com/js/js_intro.asp",
// "difficulty": "Intermediate",
// "tag": "article",
// "$id": "6720b0d3002642d663bb",
// "$createdAt": "2024-10-29T09:54:27.636+00:00",
// "$updatedAt": "2024-10-29T09:54:27.636+00:00",
// "$permissions": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671cb0910004609a76a6"
// },
// {
// "title": "Advance JavaScript",
// "description": null,
// "type": "video",
// "url": "https://youtu.be/R9I85RhI7Cg?si=ajHDSsUYfopSbCVP",
// "difficulty": "Advanced",
// "tag": "video",
// "$id": "6727c63f000ec07639c0",
// "$createdAt": "2024-11-03T18:51:47.693+00:00",
// "$updatedAt": "2024-11-12T15:22:43.239+00:00",
// "$permissions": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671cb0910004609a76a6"
// }
// ],
// "related_node": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671c6f83001893b39c51"
// },
// ],
// "comments": [],
// "liked_users": [
// {
// "accountId": "67e4d5ed00159896e1f0",
// "name": "User_Name",
// "email": "user@gmail.com",
// "username": "user_name",
// "imageId": null,
// "bio": null,
// "imageUrl": "https://cloud.appwrite.io/v1/avatars/initials?name=User_Name&project=6713db6600030e21eb99&name=User_Name&project=6713db6600030e21eb99",
// "$id": "67e4d5ee001ad4ac4347",
// "$createdAt": "2025-03-27T04:37:05.796+00:00",
// "$updatedAt": "2025-04-02T17:27:50.257+00:00",
// "$permissions": [],
// "comments": null,
// "created_roadmaps": [],
// "saved_roadmap": [
// {
// "$id": "67f57125001764d1d869",
// "$createdAt": "2025-04-08T18:55:33.895+00:00",
// "$updatedAt": "2025-04-08T18:55:33.895+00:00",
// "$permissions": [
// "read(\"user:67e4d5ed00159896e1f0\")",
// "update(\"user:67e4d5ed00159896e1f0\")",
// "delete(\"user:67e4d5ed00159896e1f0\")"
// ],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671bfbab001e47370585"
// },
// {
// "$id": "67f61ba2001f0cd282c0",
// "$createdAt": "2025-04-09T07:02:58.889+00:00",
// "$updatedAt": "2025-04-09T07:02:58.889+00:00",
// "$permissions": [
// "read(\"user:67e4d5ed00159896e1f0\")",
// "update(\"user:67e4d5ed00159896e1f0\")",
// "delete(\"user:67e4d5ed00159896e1f0\")"
// ],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671bfbab001e47370585"
// },
// {
// "$id": "67fe97b6001ac7120a2a",
// "$createdAt": "2025-04-15T17:30:35.898+00:00",
// "$updatedAt": "2025-04-15T17:30:35.898+00:00",
// "$permissions": [
// "read(\"user:67e4d5ed00159896e1f0\")",
// "update(\"user:67e4d5ed00159896e1f0\")",
// "delete(\"user:67e4d5ed00159896e1f0\")"
// ],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671bfbab001e47370585"
// }
// ],
// "completedNodes": [],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "6717e029003c2d085bb3"
// }
// ],
// "$databaseId": "6713dc29002d5e960b6c",
// "$collectionId": "671bcb29001b4971b4cc"
// }]
// }