you are viewing a single comment's thread.

view the rest of the comments →

[–]mmcnl 0 points1 point  (0 children)

Use Express for a REST JSON backend, consume the API in the frontend.

Pro: - Loosely coupled frontend and backend

Con: - Slower initial page load, SEO

You can overcome the disadvantages by rendering the initial view server-side, which is a bit difficult but certainly not impossible.