Reading notes for Code Fellows!
Frameworks differ from libraries in their control flow. Libraries offer functions to be called by the parent code. Frameworks define the entire application design. Developers do not call a framework, the framework they use calls and uses their code in a particular way.
| Vocabulary Term | Definition | | — | — | | Rendering | The transformation of HTML and other code into an interactive, visual representation (web page) within the browser on a user’s device Wikipedia | | Templates | Allow designers and developers to automatically generate custom web pages. They support static content, providing basic structure and appearance. They can be implemented from content management systems, web application frameworks, and HTML editors. Wikipedia | | State | A system is described as stateful if it is designed to remember preceding events or user interactions; the remembered information is called the state of the system. Similarly, a computer program stores data in variables, which represent storage locations in the computer’s memory. The contents of these memory locations, at any given point in the program’s execution, is called the program’s state. Wikipedia |