feat: initial release of Quick API

Express server that automatically generates REST endpoints from JSON files.
This commit is contained in:
MasterAcnolo
2026-05-30 23:20:25 +02:00
commit 1a5a7fa7e1
19 changed files with 2040 additions and 0 deletions

15
package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "quick-api",
"version": "1.0.0",
"description": "API Development Tool. Drop a JSON file in data/, start the server, consume the API.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node src/index.js"
},
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2"
}
}