5 रिपॉजिटरी
Functions that execute logic during the request-response lifecycle of an application.
Explore 5 awesome GitHub repositories matching networking & communication · Application Middleware. Refine with filters or upvote what's useful.
Express is a minimalist web server framework that provides a foundational runtime environment for building backend web APIs and applications. It operates through a central application object that orchestrates the entire request-response lifecycle, allowing developers to define routes, manage server settings, and process incoming HTTP traffic. The framework is defined by its middleware-based routing engine, which sequences request handlers and logic blocks to process traffic based on path patterns and HTTP methods. This architecture supports a highly modular approach, enabling the creation of
Binds modular logic directly to the request-response lifecycle to process incoming traffic.
Starlette is a lightweight ASGI web framework and asynchronous HTTP toolkit used to build high-performance HTTP and WebSocket services. It functions as a WebSocket server framework and a collection of ASGI middleware components for managing network requests through non-blocking asynchronous logic. The framework provides tools for real-time communication via persistent bidirectional channels and infrastructure for high-performance APIs. It includes specialized capabilities for response compression, incremental data streaming, and the execution of non-blocking background tasks after a response
Offers a collection of ASGI middleware for managing session state, CORS, and request-response lifecycles.
gqlgen is a schema-first Go library designed to build type-safe GraphQL servers. It functions as a code generation engine that transforms declarative GraphQL schema definitions into strongly-typed Go source code, ensuring strict alignment between the API contract and the underlying implementation. The framework distinguishes itself through its deep integration with the Go type system and its highly extensible build pipeline. By using schema-first development, it automates the creation of server boilerplate and resolver stubs, allowing developers to map schema fields directly to Go structs and
Attaches reusable logic to schema fields or arguments to intercept requests and execute cross-cutting concerns.
GraphQL.NET is a server-side framework for building and executing GraphQL APIs within C# applications. It provides a comprehensive toolkit for schema building, a federated engine for distributed data graphs, and a subscription handler for managing real-time data streams. The project distinguishes itself with a flexible schema builder that supports both programmatic code-first definitions and declarative schema-first approaches using the standard schema definition language. It includes a dedicated federation engine to split data graphs into subgraphs and compose them into a unified gateway, as
Provides a middleware pipeline to intercept and wrap field resolution with custom logic via a provider.
यह प्रोजेक्ट मॉडल-व्यू-कंट्रोलर आर्किटेक्चरल पैटर्न का उपयोग करके वेब एप्लिकेशन बनाने के लिए डिज़ाइन किया गया एक हल्का PHP फ्रेमवर्क है। यह एक संरचित वातावरण प्रदान करता है जो कोड रखरखाव में सुधार करने के लिए व्यावसायिक लॉजिक, डेटा प्रबंधन और यूज़र इंटरफ़ेस प्रस्तुति को अलग-अलग परतों में अलग करता है। फ्रेमवर्क सभी आने वाले वेब ट्रैफ़िक को इंटरसेप्ट करने के लिए एक फ्रंट-कंट्रोलर का उपयोग करता है, जो परिभाषित URL पैटर्न के आधार पर विशिष्ट कंट्रोलर कार्यों के लिए अनुरोधों को रूट करता है। यह मिडलवेयर-शैली अनुरोध इंटरसेप्शन को शामिल करता है, जो अनुरोध लाइफसाइकिल के विभिन्न चरणों में प्रमाणीकरण, सुरक्षा फ़िल्टरिंग या डेटा तैयारी जैसे कस्टम लॉजिक के निष्पादन की अनुमति देता है। अपनी मुख्य रूटिंग और संरचनात्मक क्षमताओं से परे, फ्रेमवर्क में एब्स्ट्रैक्टेड डेटा एक्सेस लेयर्स के माध्यम से डेटाबेस इंटरैक्शन को प्रबंधित करने और टेम्प्लेट-आधारित व्यू जनरेशन का उपयोग करके डायनामिक वेब पेज रेंडर करने के लिए उपकरण शामिल हैं। ये सुविधाएँ सामूहिक रूप से संगठित, सर्वर-साइड वेब एप्लिकेशन के विकास का समर्थन करती हैं।
Executes custom logic during the request-response lifecycle to handle cross-cutting concerns like authentication.