I'm looking to refresh my tech stack because I used to enjoy using Meteor for quickly spinning up projects. Most of my apps are internal, so I don't need anything overly complex or enterprise-level. After Meteor 3 got a bit too complicated for my taste, I'm eager to find a simpler all-in-one solution. I like using TypeScript and appreciate how Meteor allowed me to share libraries between the frontend and backend. What should I consider for my next stack?
1 Answer
If you liked the "full-stack JS with shared code" vibe of Meteor, check out a few alternatives: SvelteKit is a great choice that offers a similar "spin up an idea quick" experience with minimal boilerplate and solid TypeScript support. For a React-based option, Next.js can work well, and if you prefer Vue, give Nuxt a shot. Both let you handle server and client code within a single project. Another option is Remix, which keeps the data flow straightforward and uses standard web APIs. Pair any of these with Drizzle ORM and SQLite for a simple database solution—much less hassle than the old MongoDB setup!

Good list! I was going to mention these but even Astro with SSR mode can work as a full-stack app now.