What are some good databases to use with SvelteKit? #3103
Replies: 6 comments 8 replies
-
Hard to go wrong with Postgres + Prisma (https://www.prisma.io/). Prisma can be used with quite a few databases though. |
Beta Was this translation helpful? Give feedback.
-
The choice of database should depend more on your use case than what frontend framework you are using |
Beta Was this translation helpful? Give feedback.
-
I like to use sqlite for all small projects, mariadb for cheap shared hosting projects (because usually shared hosting comes with it installed), and postgresql for everything with a lot of data. |
Beta Was this translation helpful? Give feedback.
-
It always depends on your specific needs, but for ease of deployment and performance Consider SQLite. Postgres is probably one of the most popular databases, though. |
Beta Was this translation helpful? Give feedback.
-
There is no good answer to that question other than “it depends”. There are many databases with different concepts behind them, solving different problems. That said, I could imagine a concept in the spirit of SvelteKit adapters applied also to DBaaS providers, fine-tuned for the respective solutions (e.g. On a side-note: I trust our developers team, and they are not so much into the ORM side of things, simply because there are no great-performing one-fits-all-solutions. An adapter on the other hand could expose all advantages of the selected database system without that much overhead. For the community + collaboration side of things, this could pose an interesting concept to get those DBaaS providers onboard and engage them to deliver the best DX possible for their respective platforms and SvelteKit at the same time. |
Beta Was this translation helpful? Give feedback.
-
Using better-sqlite3 and writing SQL directly has been great so far. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I've been having problems with mongodb (monk) and I was thinking on moving to a different database (e.g Postgres).
Beta Was this translation helpful? Give feedback.
All reactions