|
|
|
|
|
by lioeters
2257 days ago
|
|
Not the parent commenter, but.. Having only a superficial knowledge of Meteor, I prefer a more modular approach: - React/Preact with context or hooks instead of Redux - Micro for server - https://github.com/zeit/micro - Postgres with Knex for data persistence - https://knexjs.org/ Add authentication, WebSockets, etc., and it starts to look like an ad-hoc framework - except that all layers are generic and replaceable (theoretically) with equivalent features, like using Express or MariaDB. I'm also quite fond of Next.js, which lets me have all the above. https://nextjs.org/ |
|