4 مستودعات
Extracting and parsing data from URL query strings into usable server-side objects.
Distinct from Query Parameter Binding: Focuses on inbound parsing of query strings rather than outbound binding of parameters to URLs.
Explore 4 awesome GitHub repositories matching web development · Query Parameter Parsing. Refine with filters or upvote what's useful.
koa2-note هو مشروع يركز على تطوير خوادم الويب باستخدام Koa2 والبرمجة غير المتزامنة في Node.js. يوفر إطار عمل لبناء خوادم الويب وواجهات برمجة التطبيقات (APIs) باستخدام خط معالجة (middleware) غير متزامن للتعامل مع دورات الطلب والاستجابة. يؤكد المشروع على بنية خلفية (backend) ذات طبقات تفصل بين التوجيه (routing)، وخدمات الأعمال، ونماذج البيانات. يتميز بدمج قواعد بيانات علائقية لحفظ جلسات المستخدم وبيانات التطبيق، إلى جانب عملية بناء تتضمن تجميع JSX إلى JavaScript لأصول الواجهة الأمامية. تغطي إمكانيات المشروع تصميم واجهات برمجة التطبيقات الخلفية، بما في ذلك التوجيه RESTful وتحليل بيانات الطلب، بالإضافة إلى العرض من جانب الخادم (SSR) باستخدام محركات القوالب. كما يتضمن دعماً لرفع الملفات غير المتزامن باستخدام تحليل التدفق متعدد الأجزاء، وإدارة الجلسات القائمة على ملفات تعريف الارتباط (cookies)، وتنفيذ JSONP للطلبات عبر النطاقات. يعمل المستودع كمورد تعليمي مع دروس منظمة وأمثلة لتعلم تنفيذ إطار عمل Koa وبنية الخادم.
Extracts incoming URL query parameters as formatted objects from the request context.
Webssh هي واجهة غلاف (shell) عن بعد وبوابة SSH تعتمد على المتصفح. تعمل كعميل SSH ومحاكي طرفية (terminal emulator) قائم على الويب، مما يسمح للمستخدمين بإنشاء اتصالات SSH آمنة بخوادم بعيدة وتنفيذ الأوامر مباشرة من خلال متصفح الويب دون الحاجة لعميل طرفية محلي. تدعم الخدمة إدارة الخوادم عن بعد باستخدام كلمة المرور أو مصادقة المفتاح العام. وتسمح ببدء الجلسة وتكوينها تلقائياً عن طريق تمرير تفاصيل الاتصال، وإعدادات الطرفية، والأوامر الأولية من خلال معاملات استعلام URL في المتصفح. يوفر النظام واجهة طرفية قابلة لتغيير الحجم تدعم أنظمة ألوان مخصصة، وتغيير حجم النافذة، ووضع ملء الشاشة. يمكن نشره كخدمة ويب مستقلة أو استضافته خلف وكيل عكسي (reverse proxy).
Parses encoded values from URL query strings to initialize connection settings and terminal preferences.
This project is a REST API framework for NestJS designed to automate the creation of boilerplate-free CRUD endpoints and resource management. It functions as an automated CRUD generator that produces controllers and services for standard database operations, accelerating the development of RESTful APIs. The toolkit includes a REST query parser that translates complex URL parameters into structured database filters, pagination, and sorting rules. It also operates as an API response serializer to control the exposure of entity fields and manage nested relations within JSON responses. For extend
Translates raw URL query strings into structured internal objects for pagination, sorting, and relational joins.
This project is a comprehensive framework for iOS application development, centered on building mobile applications that feature custom user interface components, asynchronous task management, and local data persistence. It serves as a technical knowledge base for software engineering, providing tools to organize and publish architectural analyses and notes in Markdown format. The framework distinguishes itself through a robust document-based storage layer that utilizes BSON-formatted records to perform CRUD operations within a NoSQL document store. It provides extensive system integration ca
Retrieves specific subsets of data from a server by passing JSON formatted query criteria through URL parameters.