3 مستودعات
Utilities for controlling the timing and persistence of HTTP request processes.
Distinct from Task Deferral Utilities: The candidates focus on general task deferral or specific background lauchers, not keeping an HTTP request alive until async completion.
Explore 3 awesome GitHub repositories matching web development · Request Lifecycle Management. Refine with filters or upvote what's useful.
Hono is a minimal JavaScript HTTP framework designed for building web servers across multiple runtimes, including Node.js, edge runtimes, and serverless platforms. It functions as a cross-runtime web server and a web standard API wrapper, normalizing various runtime request and response objects into standard Web API signatures. The project serves as an HTTP middleware orchestrator and request handler, utilizing a middleware-based request pipeline and hierarchical route mounting to create modular server structures. It distinguishes itself through a runtime-agnostic event wrapper that ensures c
Keeps a request alive until a specific asynchronous operation completes to prevent premature process closure.
Imagor هو خادم معالجة صور عالي الأداء ومكتبة Go تعمل كوكيل صور عند الطلب. يوفر واجهة برمجة تطبيقات (API) آمنة لتحويل الصور وتغيير حجمها وتصفيتها وتحسينها، بالإضافة إلى أداة لإنشاء صور مصغرة ثابتة من ملفات الفيديو. يتميز النظام باستخدام محرك معالجة قائم على الطلب للتعامل مع الصور الكبيرة دون تحميل الملفات بالكامل في الذاكرة. ويتميز بتوقيع الطلبات المشفر لمنع التلاعب غير المصرح به في الروابط، ويستخدم تفاوض التنسيق القائم على الترويسة (header-based) لتقديم تنسيق الصورة الأكثر كفاءة الذي يدعمه متصفح العميل تلقائياً. يغطي المشروع مجموعة واسعة من القدرات، بما في ذلك اكتشاف منطقة الاهتمام، وإضافة العلامات المائية، وخلفيات التخزين القابلة للتوصيل. كما يدير دورات حياة الموارد من خلال تدفق البيانات المتزامن ويوفر تدابير أمنية مثل تنقية مسار الإدخال لمنع هجمات البرمجة عبر المواقع (XSS). يتضمن الخادم واجهة HTML لعرض صفحات الهبوط ونماذج الرفع.
Tracks the lifecycle of image requests to ensure resources are cleaned up upon completion.
rxhttp is a communication layer and network library for Android applications that wraps OkHttp to provide an asynchronous HTTP client. It functions as a type-safe API client that manages network requests and automates the conversion of responses into structured objects. The library features a compile-time code generation tool to produce type-safe request boilerplate and an interceptor framework for applying global encryption, decryption, and custom headers to network traffic. It supports non-blocking communication using Kotlin Coroutines and RxJava. The project covers a broad range of networ
Automatically cancels pending network requests when associated UI components are destroyed to prevent memory leaks.