How a browser loads a page

When a user enters a URL(Uniform Resource Locator)/web address in a browser’s address bar and presses enter, the browser takes on the responsibility of presenting the web resource to the user by requesting it from the server and displaying the response to the user on the browser window. The response... [Read More]

Understanding Flux Architecture

Flux is an architectural pattern for building data layer for Javascript applications. Flux focuses on creating an explicit and understandable data flows i.e unidirectional data flow which increases predictability of application code. [Read More]