POST /pay
{ "userId": 1, "amount": 10, "requestId": "abc-123" }- Duplicate charges
- 200 OK but no DB record
- Instability under load
bun i
bun run db:init
bun run devbun run loadsrc/
├── server.js # Express server on :3000
├── payRoute.js # Payment endpoint
└── db.js # SQLite helpers
- SQLite database in
db/app.sqlite - External payment provider (AWS Lambda, no local setup needed)