|
|
|
|
|
by ProCynic
4203 days ago
|
|
Just anecdotally, I've found that the second round trip overwhelms any performance gains from not rendering on the server, especially if you have to boot up a heavy framework such as e.g. angular before even starting it. The isomorphic model is that the first page load happens on the server (1 round trip), and that any additional page loads hit the api directly and re-render the page in the browser (also 1 round trip). |
|