- Full Stack Web Development with Raspberry Pi 3
- Soham Kamani
- 289字
- 2021-07-15 17:10:26
The web development stack
A development stack is actually a very loosely defined term, which actually refers to the list of technologies and frameworks that you need in order to get an application up-and-running. It's called a stack because each layer is more and more abstracted from the user. Consider the example of the popular MEAN stack (MongoDB, Express, AngularJS, Node.js). If we were to actually make a physical stack out of these, it would look like this:

AngularJS is served by the Express server, which is run by the Node.js JavaScript runtime, which in turn is able to interact with the MongoDB database.
What's important to note is that as we move down the stack, each layer gets more and more inaccessible to the user of our application:
- The user has full and uninhibited access to the frontend Angular code.
- There is limited interaction with the Express server, normally through the use of HTTP requests that the server responds to.
- There is no direct interaction between the user and the database or the node runtime. If you ever build an application where your users have direct access to your database, there are serious security concerns.
Let's take the example of the very application we are going to build with this book so that we can have some context to understand the web development stack better.
As with any generic stack, it's conventional to look at it from a top-down approach, that is, looking at each layer, starting from the one on top, and slowly uncovering the layers at the bottom. Let's follow this approach by analyzing what we require from the very first layer of our stack and working our way down to solve the challenges we face.
- C++程序設(shè)計(第3版)
- Learning PostgreSQL
- C語言程序設(shè)計(第2版)
- FFmpeg入門詳解:音視頻流媒體播放器原理及應(yīng)用
- 從0到1:HTML+CSS快速上手
- Processing互動編程藝術(shù)
- Data Analysis with IBM SPSS Statistics
- Python自然語言處理(微課版)
- Python數(shù)據(jù)分析從0到1
- Learning Salesforce Einstein
- SQL經(jīng)典實例(第2版)
- C#開發(fā)案例精粹
- Practical Game Design with Unity and Playmaker
- Functional Python Programming
- 零基礎(chǔ)學(xué)SQL(升級版)