Knowledge

Top 5 Real-Time Databases Compared
Compare top real-time databases: Convex for TypeScript teams, Firebase for MVPs, Supabase for SQL, Realm for mobile, InfluxDB for analytics.
Deborah Ruck's avatar
Deborah Ruck
2 months ago
What is a real-time database? (and why your startup probably needs one)
Real-time databases sync data instantly across users, eliminating polling lag. Clients subscribe to queries that auto-update when data changes, creating faster, more responsive apps essential for collaboration, e-commerce, and gaming.
Deborah Ruck's avatar
Deborah Ruck
3 months ago
Event Driven Programming: A Definitive Guide
We go over the basics of event driven programming: how it works, benefits, variants, and use cases.
Convex's avatar
Convex
a year ago
Multiple apps on a single domain hosted on sub-paths
Serve your app on a sub-path to host multiple apps on the same domain, using vercel.json rewrites.
Ian Macartney's avatar
Ian Macartney
a year ago
Convert your .json array to a .jsonl (JSON Lines)
JSON Lines stores one JSON object per line in a file, which is more scalable. Here's the one-liner to convert your .json file to .jsonl
Ian Macartney's avatar
Ian Macartney
2 years ago
Supercharge `npm run dev` with package.json scripts
With a simple `npm run dev` we can sign up a user for Convex, add seed data, and run the frontend and backend (including database) in parallel. Here's how we do it, and how to undo it too.
Ian Macartney's avatar
Ian Macartney
2 years ago