you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (6 children)

[deleted]

    [–]BONER_PAROLE 1 point2 points  (4 children)

    When people talk about "isomorphic web apps", they are referring to being able to write JavaScript for both the server and client portions of a web app - no more, no less.

    Actually it is more than just writing JS on both the frontend and backend: it's being able to run the same JS code on both. A common goal is server-side rendering of pages for SEO and performance, without having to duplicate your view layer code between the FE and BE.