Az alap api implementációja, ami kiszolgálja a kéréseket
This commit is contained in:
Zombori Péter
2025-10-08 20:27:07 +02:00
parent 96ab0f4eee
commit 568d3eb513
8 changed files with 1277 additions and 5 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "telefonkonyv-api",
"version": "1.0.0",
"description": "Telefonkönyv API (Express + MariaDB)",
"main": "api.js",
"type": "module",
"scripts": {
"start": "node api.js",
"dev": "node --watch api.js"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mysql2": "^3.11.3"
}
}