Full stack framework goals
Before we get to the software architecture part of this project, we need to get a better insight into what a full stack framework will entail, especially in the JavaScript context and the language’s ecosystem. When developing a full stack JavaScript framework, we get to create a blend of abstractions and conventions to help developers produce a combination of frontend and backend components, given the modular nature of the JavaScript language and its ecosystem. From the JavaScript-language point of view, the framework can utilize the latest syntax and functional improvements, such as ES6 modules and modern web APIs. Ecosystem-wise, we will heavily rely on already-established modules to enable certain functionality. Similar to the approach in Chapter 6, this strategy allows us to stay focused on the larger system design and achieve much better feature coverage.
The primary objective of a full stack framework is to simplify the application development...