Hacker News new | ask | show | jobs
Ask HN: Good admin panels (read-only) for SQLite and Node.js?
1 points by vsroy 1120 days ago
I'm running a NextJS application with sqlite as the backend. Would be useful to have a dead simple admin panel where I can view all the data in the database.

Ideally, I could just plug it into my existing express server. Googling around, there don't seem to be a ton of good options.

2 comments

Maybe a bit convoluted, but you could create a Prisma adapter in front of your sqlite db and use Prisma Studio to access your data. You can use database introspection to generate a schema file. https://www.prisma.io/docs/getting-started/setup-prisma/add-...
Take a look at https://sqlitecloud.io