HTTP message parser written in C. It parses both requests and
responses. The parser is designed to be used in performance HTTP
applications. It does not make any syscalls nor allocations, it does not
buffer data, it can be interrupted at anytime. Depending on your
architecture, it only requires about 40 bytes of data per message
stream (in a web server that is per connection).
Features:
No dependencies
Handles persistent streams (keep-alive).
Decodes chunked encoding.
Upgrade support
Defends against buffer overflow attacks.
The parser extracts the following information from HTTP messages:
Xcode 11 or later has integrated support for the Swift Package Manager. You can add Telegraph to your project by choosing the File - Swift Packages - Add Package Dependency option. Use the repository url as specified below and select the version you want to use.
Or you can manually add a Package.swift file to your project with:
HTTP Parser
HTTP message parser written in C. It parses both requests and responses. The parser is designed to be used in performance HTTP applications. It does not make any syscalls nor allocations, it does not buffer data, it can be interrupted at anytime. Depending on your architecture, it only requires about 40 bytes of data per message stream (in a web server that is per connection).
Features:
The parser extracts the following information from HTTP messages:
Installation
Swift Package Manager
The Swift Package Manager is a tool for automating the distribution of Swift code.
Xcode 11 or later has integrated support for the Swift Package Manager. You can add Telegraph to your project by choosing the File - Swift Packages - Add Package Dependency option. Use the repository url as specified below and select the version you want to use.
Or you can manually add a
Package.swift
file to your project with:Carthage
Carthage is a decentralized dependency manager that builds your dependencies into binary frameworks.
See Carthage - Quick Start for more information.
CocoaPods
CocoaPods is a dependency manager for Cocoa projects that makes dependencies a part of your workspace.
See CocoaPods - Getting Started for more information.
Documentation
Visit https://github.com/nodejs/http-parser for more information