Review
First off, that seems like a pretty solid draft. That being said, you might want to give the following some thought -
- Build the frontend in
Next.jsand use rest calls to a separate api server. - Use
Nest.jsto create your api layer. It supports Prisma and is a really mature framework. - If most of your apps functionality is auth walled (ie. users need to be logged in to see the pages) you might find
Remixinteresting as it gives you a must more performant alternative toNext.jsfor the frontend.
0 views0