;TLDR What libraries do you recommend for a CRUD web app with react front end, graphql api layer and postgresql database? My discovery so far,
Frontend: next.js
API: graphql: next.js + Apollo server
Auth: next.js auth
DB Access: Prisma or Hasura
Every year I try to learn/build something new during holiday off, This year I want to build a full stack web app in JS. For past 15+ years, I have shipped and maintained large and small web apps mostly using REST, C#, ASP.NET Core, JavaScript and react. I am familiar/dabbled with JS ecosystem and libraries but never built anything production grade in full stack JS.
I want to build an todo app with auth, user roles and permissions, graphql to fetch and mutate data in postgresql db.
What libraries you would recommend that are good, stable, battle tested and would be around for few more years ?
Thank you.