April 2020
Intermediate to advanced
716 pages
18h 55m
English
On the server side, we divided the code according to functionality, by separating code that defines business models from code implementing routing logic, and controller code that responds to client requests at these routes. Within the server folder, we maintained three main sections, as shown in the following structure:
| -- server/ | --- controllers/ | --- models/ | --- routes/
In this structure, each folder contains code with a specific purpose:
Read now
Unlock full access