This commit is contained in:
Julien Froidefond
2025-08-20 15:43:24 +02:00
commit 09d2c5cbe1
100 changed files with 12494 additions and 0 deletions

65
data/skills/backend.json Normal file
View File

@@ -0,0 +1,65 @@
{
"category": "Backend",
"skills": [
{
"id": "nodejs",
"name": "Node.js",
"description": "Runtime JavaScript côté serveur construit sur le moteur V8 de Chrome",
"links": [
"https://nodejs.org/",
"https://nodejs.org/en/docs/",
"https://github.com/nodejs/node"
]
},
{
"id": "python",
"name": "Python",
"description": "Langage de programmation interprété de haut niveau",
"links": [
"https://www.python.org/",
"https://docs.python.org/3/",
"https://github.com/python/cpython"
]
},
{
"id": "express",
"name": "Express.js",
"description": "Framework web rapide, non-opinionated et minimaliste pour Node.js",
"links": [
"https://expressjs.com/",
"https://expressjs.com/en/guide/routing.html",
"https://github.com/expressjs/express"
]
},
{
"id": "postgresql",
"name": "PostgreSQL",
"description": "Système de gestion de base de données relationnelle open source",
"links": [
"https://www.postgresql.org/",
"https://www.postgresql.org/docs/",
"https://github.com/postgres/postgres"
]
},
{
"id": "mongodb",
"name": "MongoDB",
"description": "Base de données NoSQL orientée document",
"links": [
"https://www.mongodb.com/",
"https://docs.mongodb.com/",
"https://github.com/mongodb/mongo"
]
},
{
"id": "redis",
"name": "Redis",
"description": "Structure de données en mémoire utilisée comme base de données, cache et broker de messages",
"links": [
"https://redis.io/",
"https://redis.io/documentation",
"https://github.com/redis/redis"
]
}
]
}