2 مستودعات
Scripting environments embedded within web servers to provide framework-like request handling capabilities.
Distinct from Lua: Distinct from general web frameworks as it is an embedded extension of an existing server
Explore 2 awesome GitHub repositories matching web development · Embedded Web Frameworks. Refine with filters or upvote what's useful.
This project is an NGINX module that embeds the Lua scripting language directly into the server environment. It functions as a request processor and response filter, enabling the execution of scripts to handle HTTP requests, generate dynamic content, and manage server behavior without external application calls. The module provides a shared memory dictionary and cache manager, allowing data to be stored and retrieved across all active worker processes. This capability supports the collection of high-performance server metrics and the synchronization of information across concurrent processes.
Allows running Lua scripts within the server for custom request handling and dynamic content generation.
PyWebIO هو إطار عمل لتطبيقات الويب بلغة Python ومكتبة واجهة مستخدم قائمة على النصوص تسمح ببناء واجهات ويب تفاعلية دون كتابة HTML أو CSS أو JavaScript. يعامل متصفح الويب كطرفية غنية، ويترجم استدعاءات دوال Python إلى عناصر واجهة مستخدم ويلتقط مدخلات المستخدم من خلال حلقة طلب واستجابة متزامنة. يعمل إطار العمل كخادم تطبيقات ويب غير متزامن ينفذ جلسات المستخدم كـ Coroutines للتعامل مع تفاعلات متزامنة متعددة على خيط واحد (Thread). كما يعمل كواجهة لتصور البيانات، مما يتيح الرندرة المباشرة للمخططات والرسوم البيانية التفاعلية من مكتبات خارجية داخل المتصفح. يغطي النظام مجموعة واسعة من قدرات النشر والتهيئة، بما في ذلك نشر خدمة الويب المستقلة، واستضافة تطبيقات متعددة، وتصدير خوادم WSGI و ASGI. ويوفر أدوات لبناء واجهة المستخدم الرسومية للمتصفح، وتهيئة بيانات تعريف التطبيق، وإنشاء ملفات تعريف الويب للتثبيت على الأجهزة المحمولة. يمكن نشر التطبيقات كخدمات مستقلة أو تضمينها في إطارات عمل ويب موجودة باستخدام محولات وتوجيه قياسي.
Allows embedding of script-based web interfaces into existing frameworks to serve content via standard routes.