This chapter is a deep dive into the view concept of AppRun, an important part of the AppRun architecture. In the AppRun event lifecycle, the view is responsible for displaying the web pages according to the application states.
The Document Object Model (DOM) is the programming API for web development. It allows us to manipulate the elements, styles, and content of the elements on the web pages. However, the view does not update the DOM directly. The view creates the data structure representation of the DOM, called the virtual DOM. AppRun renders the virtual DOM to the actual DOM. It ...