DEV Community

Discussion on: Is it a good idea to build backend with nextJS?

Collapse
 
codewander profile image
codewander • Edited

Consider fetching directly with an ORM inside of getServerSideProps similar to the Blitz approach, and then pick a proper library (such as using express) and build an API later.

(I would lean towards hotwire or liveview initially, then break out an API (phoenix) and client side rendering (elm) from that once the project started to grow).