Skip to content
SP StackPractices

Tag: web

Browse 3 practical software engineering resources tagged with "web". Discover code recipes, design patterns, documentation templates, and in-depth guides to help you build, deploy, and maintain production-ready solutions involving web.

Backend for Frontend (BFF) Pattern

Create dedicated backend services tailored to the specific needs of each frontend client type, aggregating downstream APIs and optimizing data shapes per platform.

Front Controller Pattern

Route all incoming requests through a single handler that dispatches to the appropriate page command, centralizing request processing and security.

Page Controller Pattern

Use a dedicated controller object for each logical page in a web application, handling the request and populating the view for that specific page.