Overview of Basic CRUD application implementations
mainThe Basic CRUD application example provides different server-side implementations depending on your requirements for persistence and scaling:
- Standard Implementation (
server/): Uses TypeScript and an in-memory database. This is suitable for simple testing and does not support clustering. - Clustered Implementation (
server-postgres-cluster/): Uses JavaScript, a Postgres database with the Postgres adapter, and supports clustering via the@socket.io/stickymodule.