Node.js/Express-Server als Ersatz für Cloudflare Pages Functions + D1 (läuft auf eigenem Server statt Cloudflare)
Build & Deploy / deploy (push) Waiting to run

This commit is contained in:
qcigano
2026-08-05 15:06:17 +02:00
parent 53e7bb158a
commit b8b8ec7b7a
19 changed files with 1322 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"name": "vandiy-shop-server",
"type": "module",
"version": "1.0.0",
"description": "Eigener Node.js/Express-Server für Van's DIY & Bastelbedarf Ersatz für Cloudflare Pages Functions + D1, läuft auf dem eigenen Netcup-Server. Portiert 1:1 aus functions/ (Cloudflare Pages Functions), gleiche Sicherheitslogik, gleiche Datenbankstruktur (SQLite statt D1).",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"start": "node index.js"
},
"dependencies": {
"better-sqlite3": "^11.8.1",
"cookie-parser": "^1.4.7",
"express": "^4.21.2"
}
}