Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 700 Bytes

UNIVERSAL.md

File metadata and controls

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

Universal

A universal (or isomorphic) 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 a universal application, the initial request made by the web browser is processed by the server while subsequent requests are processed by the client.