Conspicuously absent from the author's article was Angular. What is it about Angular that doesn't lend itself to this dual purpose frontend and backend infrastructure?
Lots of potential hidden state as well as the need to support the entire DOM API server-side. For example, directives may add hidden state to the DOM and assume full availability of DOM API (even jQuery). The server will have to support all that Also, you'll have to re-do the entire rendering on the client, then swap the server-generated DOM with the client-generated DOM. Its probably possible - but is it worth the e…
Re: Isomorphic JavaScript: The Future of Web Apps
#121I did it. Not really super hard. https://github.com/ithkuil/angular-on-server/wiki/Running-An.... But http://prerender.io is a lot easier and works for everything.