awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
joyent avatar

joyent/http-parserArchived

0
View on GitHub↗
6,445 स्टार्स·1,522 फोर्क्स·C·MIT·1 व्यू

Http Parser

http-parser एक C लाइब्रेरी है जिसे ज़ीरो-कॉपी HTTP मैसेज पार्सिंग, URL डिकंस्ट्रक्शन, और प्रोटोकॉल अपग्रेड और चंक्ड एन्कोडिंग के प्रबंधन के लिए डिज़ाइन किया गया है। यह HTTP रिक्वेस्ट और रिस्पॉन्स से हेडर, मेथड्स और स्टेटस कोड निकालने के लिए यूटिलिटीज प्रदान करती है।

प्रोजेक्ट में स्ट्रिंग्स को अलग-अलग घटकों में तोड़ने के लिए एक ज़ीरो-कॉपी URL पार्सर और प्रोटोकॉल स्विच रिक्वेस्ट का पता लगाने के लिए एक मैकेनिज्म शामिल है ताकि उस सटीक बाइट ऑफ़सेट की पहचान की जा सके जहाँ नॉन-HTTP डेटा शुरू होता है। इसमें चंक्ड ट्रांसफर-एन्कोडेड डेटा स्ट्रीम को संभालने के लिए एक डिकोडर भी है।

Features

  • Message Parsing - Implements a zero-copy approach to extract header fields, status codes, and methods from HTTP requests and responses.
  • Zero-Copy Parsing - Extracts data from input buffers by referencing pointers to the original memory instead of allocating new tokens.
  • Chunked Transfer Encoding - Decodes data streams using chunked transfer encoding to retrieve the final response body.
  • HTTP Message Parsers - Provides a C library for extracting headers, methods, and status codes using a high-performance zero-copy approach.
  • URL Parsers - Offers a high-performance utility for deconstructing URL strings into individual components without memory allocation.
  • Incremental Stream Processing - Processes incoming HTTP data incrementally in small chunks to avoid loading entire requests into memory.
  • State-Based Parsing - Uses a state-machine based parsing technique to track context and handle byte streams incrementally.
  • URL Component Deconstructors - Splits complex URL strings into constituent parts such as host, path, and query parameters.
  • URL Data Parsing - Converts raw URL strings into structured components using a zero-copy utility.
  • HTTP Upgrade Handlers - Handles the conversion of inbound HTTP requests into persistent connections by detecting protocol upgrade requests.
  • Stream Offset Tracking - Tracks the exact byte position within the message stream to identify where protocol transitions occur.
  • C Memory Management - Implements low-level memory allocation and cleanup for buffers within a C-based library to minimize overhead.
  • Protocol Upgrades - Detects requests to switch protocols and identifies the byte offset where the new protocol stream begins.
  • Development Utilities - C-based HTTP request/response parser.

स्टार हिस्ट्री

joyent/http-parser के लिए स्टार हिस्ट्री चार्टjoyent/http-parser के लिए स्टार हिस्ट्री चार्ट

AI सर्च

और अधिक बेहतरीन रिपॉजिटरी खोजें

अपनी ज़रूरत को सरल भाषा में बताएं — AI हजारों क्यूरेटेड ओपन-सोर्स प्रोजेक्ट्स को प्रासंगिकता के आधार पर रैंक करता है।

Start searching with AI

Http Parser के ओपन-सोर्स विकल्प

समान ओपन-सोर्स प्रोजेक्ट्स, जो Http Parser के साथ साझा की गई सुविधाओं के आधार पर रैंक किए गए हैं।
  • nodejs/http-parsernodejs का अवतार

    nodejs/http-parser

    6,445GitHub पर देखें↗

    http-parser is a C-based library for extracting request and response metadata from raw HTTP data streams. It utilizes a state-machine approach to identify message segments and boundaries. The project implements zero-copy string parsing and pointer-based URL deconstruction to avoid memory allocations and data duplication. It supports incremental stream processing to handle fragmented data chunks and includes mechanisms for decoding chunked encoding and managing network protocol upgrades.

    C
    GitHub पर देखें↗6,445
  • boostorg/beastboostorg का अवतार

    boostorg/beast

    4,801GitHub पर देखें↗

    Beast is a C++ library for implementing low-level HTTP and WebSocket clients and servers. It functions as an asynchronous networking framework designed to compose non-blocking I/O operations and layered stream stacks for managing concurrent network traffic, specifically utilizing the Boost.Asio asynchronous model. The library provides a comprehensive implementation of the HTTP/1.1 and WebSocket protocols. For HTTP, it includes primitives for parsing and serializing messages with support for chunked transfer encoding, incremental body reading, and request pipelining. Its WebSocket implementati

    C++asioasync-programmingboost
    GitHub पर देखें↗4,801
  • vibora-io/viboravibora-io का अवतार

    vibora-io/vibora

    5,592GitHub पर देखें↗

    Vibora is an asynchronous Python web framework and built-in HTTP server designed for building high-performance web applications. It utilizes an asynchronous event loop and coroutines to process network requests and serve responses without requiring external server wrappers. The project features a high-performance asynchronous schema validator for request integrity, a non-blocking template engine with support for hot-reloading, and a WebSocket communication server for bidirectional real-time data exchange. The framework covers a broad range of capabilities, including modular route management

    Pythonasyncclientframework
    GitHub पर देखें↗5,592
  • olahol/melodyolahol का अवतार

    olahol/melody

    4,066GitHub पर देखें↗

    Melody is a WebSocket server framework designed to upgrade HTTP connections into bidirectional streams. It functions as a session manager and binary streaming library that facilitates real-time data exchange between a server and multiple remote clients. The project features a broadcast engine that optimizes multi-client transmissions through wire-representation caching. It includes a dedicated session management system for attaching custom state to persistent network connections and an upgrade handler that validates handshake headers. The framework covers broad capability areas including eve

    Goexampleframeworkgo
    GitHub पर देखें↗4,066
Http Parser के सभी 30 विकल्प देखें→

अक्सर पूछे जाने वाले प्रश्न

joyent/http-parser क्या करता है?

http-parser एक C लाइब्रेरी है जिसे ज़ीरो-कॉपी HTTP मैसेज पार्सिंग, URL डिकंस्ट्रक्शन, और प्रोटोकॉल अपग्रेड और चंक्ड एन्कोडिंग के प्रबंधन के लिए डिज़ाइन किया गया है। यह HTTP रिक्वेस्ट और रिस्पॉन्स से हेडर, मेथड्स और स्टेटस कोड निकालने के लिए यूटिलिटीज प्रदान करती है।

joyent/http-parser की मुख्य विशेषताएं क्या हैं?

joyent/http-parser की मुख्य विशेषताएं हैं: Message Parsing, Zero-Copy Parsing, Chunked Transfer Encoding, HTTP Message Parsers, URL Parsers, Incremental Stream Processing, State-Based Parsing, URL Component Deconstructors।

joyent/http-parser के कुछ ओपन-सोर्स विकल्प क्या हैं?

joyent/http-parser के ओपन-सोर्स विकल्पों में शामिल हैं: nodejs/http-parser — http-parser is a C-based library for extracting request and response metadata from raw HTTP data streams. It utilizes… boostorg/beast — Beast is a C++ library for implementing low-level HTTP and WebSocket clients and servers. It functions as an… vibora-io/vibora — Vibora is an asynchronous Python web framework and built-in HTTP server designed for building high-performance web… olahol/melody — Melody is a WebSocket server framework designed to upgrade HTTP connections into bidirectional streams. It functions… icsharpcode/sharpziplib — SharpZipLib is a .NET compression library and file archiver used to create, extract, and manage Zip, GZip, Tar, and… antirez/sds — sds is a C dynamic string library that provides a memory management wrapper for heap-allocated strings. It implements…