microweb
Microweb refers to a design philosophy and architectural pattern for building web applications that emphasizes extreme simplicity and a focus on a single, specific function. Unlike monolithic applications that bundle many features into a single codebase, or microservices that are independently deployable but often still quite feature-rich, microweb applications are designed to do one thing and do it well. This can involve anything from serving a simple static HTML page to performing a very specific data lookup or API interaction.
The core idea behind microweb is to minimize complexity and overhead. This often translates to very small
The concept can be seen as an extension of the microservices idea, pushing the granularity even further.