awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
EZLippi avatar

EZLippi/Tinyhttpd

0
View on GitHub↗
12,153 نجوم·3,952 تفرعات·C·GPL-3.0·6 مشاهدات

Tinyhttpd

Tinyhttpd is a minimal HTTP web server designed to process requests, deliver static files, and execute CGI scripts via network sockets. It serves as an educational implementation for studying the fundamental mechanics of the HTTP protocol and network programming.

The server supports the Common Gateway Interface to generate dynamic content by launching external programs as subprocesses. It manages these dynamic requests by redirecting data through pipes and system environment variables.

The system provides capabilities for parsing HTTP request methods and URLs, mapping those requests to local directory paths, and delivering static assets from the file system.

Features

  • Server Implementations - Provides a lightweight codebase for educational study of network programming and the HTTP protocol.
  • Socket Networking - Handles raw TCP socket communication for reading requests and writing responses.
  • CGI Script Execution - Executes external scripts via the Common Gateway Interface to generate dynamic web content.
  • HTTP Servers - Provides a minimal HTTP server for hosting simple websites and files with low overhead.
  • Synchronous Request Handlers - Processes HTTP requests using a synchronous, linear sequence before proceeding to the next operation.
  • HTTP Request Handling - Sequentially parses HTTP headers and methods from the input stream to handle requests.
  • HTTP Request Handlers - Parses request methods and URLs to route traffic to either static files or CGI scripts.
  • File-System-Based Routers - Maps incoming HTTP URLs to local directory paths to retrieve static files.
  • Static File Servers - Serves local assets and documents to browsers using a lightweight backend.

سجل النجوم

مخطط تاريخ النجوم لـ ezlippi/tinyhttpdمخطط تاريخ النجوم لـ ezlippi/tinyhttpd

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

بدائل مفتوحة المصدر لـ Tinyhttpd

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع Tinyhttpd.
  • nanohttpd/nanohttpdالصورة الرمزية لـ NanoHttpd

    NanoHttpd/nanohttpd

    7,215عرض على GitHub↗

    NanoHTTPD is a lightweight, embeddable HTTP server for Java applications. It allows developers to integrate web server capabilities directly into a Java project to handle incoming requests without requiring a standalone installation. The project provides specialized implementations for an HTTPS web server, a WebSocket server for bidirectional real-time communication, and a static file web server. These capabilities enable secure network traffic through SSL certificates and the delivery of local files with automatic MIME type detection. The server includes systems for request routing and hand

    Java
    عرض على GitHub↗7,215
  • aosabook/500linesالصورة الرمزية لـ aosabook

    aosabook/500lines

    29,582عرض على GitHub↗

    This project is a software engineering educational resource providing a collection of canonical system implementations. It serves as a library of computer science case studies and polyglot code examples designed to demonstrate architectural tradeoffs and design patterns through concise versions of fundamental software components. The repository focuses on studying the implementation of core concepts such as consensus algorithms, interpreters, and database engines. It provides minimal versions of complex systems to facilitate the analysis of language design, data structure implementation, and

    JavaScript
    عرض على GitHub↗29,582
  • lukeed/polkaالصورة الرمزية لـ lukeed

    lukeed/polka

    5,585عرض على GitHub↗

    Polka is a minimalist Node.js web framework and HTTP routing engine. It provides a small-footprint server implementation designed for low overhead, mapping URL paths and HTTP methods to specific handler functions. The project utilizes a middleware-based architecture, processing requests through a sequence of functions to handle tasks such as logging, authorization, and data modification. It allows for the organization of these functions into global and path-filtered groups to control execution order. The framework covers core web capabilities including route parameter extraction, request URL

    JavaScript
    عرض على GitHub↗5,585
  • sanic-org/sanicالصورة الرمزية لـ sanic-org

    sanic-org/sanic

    18,624عرض على GitHub↗

    Sanic is an asynchronous Python web framework designed for building high-performance APIs and services. It operates as a production-ready ASGI web server, utilizing a non-blocking event loop to handle concurrent requests and maximize throughput. The framework is built to support scalable architectures, offering built-in worker process management to distribute traffic across available CPU cores. What distinguishes Sanic is its focus on modularity and developer-centric tooling. It features a blueprint-based system for organizing complex applications into pluggable components, alongside a robust

    Pythonapi-serverasgiasyncio
    عرض على GitHub↗18,624
عرض جميع البدائل الـ 30 لـ Tinyhttpd→

الأسئلة الشائعة

ما هي وظيفة ezlippi/tinyhttpd؟

Tinyhttpd is a minimal HTTP web server designed to process requests, deliver static files, and execute CGI scripts via network sockets. It serves as an educational implementation for studying the fundamental mechanics of the HTTP protocol and network programming.

ما هي الميزات الرئيسية لـ ezlippi/tinyhttpd؟

الميزات الرئيسية لـ ezlippi/tinyhttpd هي: Server Implementations, Socket Networking, CGI Script Execution, HTTP Servers, Synchronous Request Handlers, HTTP Request Handling, HTTP Request Handlers, File-System-Based Routers.

ما هي البدائل مفتوحة المصدر لـ ezlippi/tinyhttpd؟

تشمل البدائل مفتوحة المصدر لـ ezlippi/tinyhttpd: nanohttpd/nanohttpd — NanoHTTPD is a lightweight, embeddable HTTP server for Java applications. It allows developers to integrate web server… aosabook/500lines — This project is a software engineering educational resource providing a collection of canonical system… lukeed/polka — Polka is a minimalist Node.js web framework and HTTP routing engine. It provides a small-footprint server… sanic-org/sanic — Sanic is an asynchronous Python web framework designed for building high-performance APIs and services. It operates as… oakserver/oak — Oak is a cross-runtime HTTP middleware framework and web server designed to operate across Deno, Node.js, Bun, and… apache/httpd — This project is an HTTP web server that delivers web content to clients using HTTP/1.1 and HTTP/2 protocols across…