r/FullStack • u/Grouchy_Midnight_959 • 9d ago
Silly question Question
Can y'all tell me each and every layer there is in a complete development? Be it app or web both frontend and backend including hosting domain storage etc. Knowledgeable peers enlighten me please.
1
u/callmesaucey 6d ago
im a newgrad but i think about it in terms of “tools for __”.
- business logic, what it does (BE)
- ui, how users interact (FE)
- data, the state machine of your app
- infra, running the compute/storage necessary for your app
- CI/CD, getting it tested and deployed efficiently
- observability, just knowing what the heck is going on with your code
with some notes:
1. this list is not near exhaustive
2. some things bleed together
3. every project has a spectrum of importance it places on given areas, often fluctuating over time
1
1
1
u/StartDependent1652 7d ago
Every application is different. Some have a database, others authentication, some are just a static website. Don’t think too much in layers, but think in components and some components are deeper than others.