Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 781 Bytes

ISOMORPHIC.md

File metadata and controls

12 lines (8 loc) · 781 Bytes
title excerpt
Isomorphic
an application is said to be isomorphic (universal) when its code can run both in the client and the server

Isomorphic

An isomorphic (or preferably universal) application is one whose code (in this case, JavaScript) can run both in the server and the client.

The underlying idea is to allow the server to render and handle routing of an application for non-JavaScript users, while also making it fully working in the browser for fast interactions without involving traditional page reloads.

In an isomorphic application, the initial request made by the web browser is processed by the server while subsequent requests are processed by the client.