- MEAN Web Development
- Amos Q. Haviv
- 227字
- 2021-08-05 17:46:44
Three-tier web application development
Most web applications are built in a three-tier architecture that consists of three important layers: data, logic, and presentation. In web applications, the application structure usually breaks down to database, server, and client, while in modern web development, it can also be broken into database, server logic, client logic, and client UI.
A popular paradigm of implementing this model is the MVC architectural pattern. In the MVC paradigm, the logic, data, and visualization are separated into three types of objects, each handling its own tasks. The View handles the visual part, taking care of user interaction. The Controller responds to system and user events, commanding the Model and View to change appropriately. The Model handles data manipulation, responding to requests for information or changing its state according to the Controller's instructions. A simple visual representation of MVC is shown in the following diagram:

Common MVC architecture communication
In the 25 years of web development, many technology stacks became popular building three-tier web applications; among those now ubiquitous stacks, you can find the LAMP stack, the .NET stack, and a rich variety of other frameworks and tools. The main problem with these stacks is that each tier demands a knowledge base that usually exceeds the abilities of a single developer, making teams bigger than they should be, less productive, and exposed to unexpected risks.
- TypeScript入門與實(shí)戰(zhàn)
- 深入淺出Java虛擬機(jī):JVM原理與實(shí)戰(zhàn)
- 軟件測(cè)試項(xiàng)目實(shí)戰(zhàn)之性能測(cè)試篇
- 運(yùn)用后端技術(shù)處理業(yè)務(wù)邏輯(藍(lán)橋杯軟件大賽培訓(xùn)教材-Java方向)
- Unity UI Cookbook
- Python Data Structures and Algorithms
- Node Cookbook(Second Edition)
- Java編程從入門到精通
- 深度學(xué)習(xí)入門:基于Python的理論與實(shí)現(xiàn)
- Python Social Media Analytics
- Android智能手機(jī)APP界面設(shè)計(jì)實(shí)戰(zhàn)教程
- Office VBA開(kāi)發(fā)經(jīng)典:中級(jí)進(jìn)階卷
- Implementing DevOps with Ansible 2
- OpenCL異構(gòu)并行計(jì)算:原理、機(jī)制與優(yōu)化實(shí)踐
- 數(shù)據(jù)結(jié)構(gòu):C語(yǔ)言描述(融媒體版)