httpkit

An efficient HTTP tool suite written in pure nim. Help you to write HTTP services or clients via TCP, UDP, or even Unix Domain socket, etc.

Pure Nim score 30/100 · tests present · docs generated

Summary

Latest Version Unknown
License MIT
CI Status Passing
Downloads 0
Last Indexed 2026-07-21 05:24

Installation

nimble install httpkit
choosenim install httpkit
git clone https://github.com/tulayang/httpkit

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
httpkit - - - - - - -

Source

Repository https://github.com/tulayang/httpkit
Homepage https://github.com/tulayang/httpkit
Documentation View Documentation
Registry Source nimble_official

README

HttpKit Build Status

This is an efficient HTTP parser written in pure nim. It can parse both requests and responses. Give it a data chunk, it will produce all the useful http states for you. And then, you can write your HTTP services with these states.

Features

  • Does not perform IO operations, processing data chunk is its only purpose
  • Data chunk can come from TCP socket, UDP socket, or even Unix Domain socket, etc. It means that you can write HTTP services via TCP, UDP, or even Unix Domain socket
  • No overhead. If you are writing an asynchronous web service or clients by asyncdispatch and asyncnet, HttpKit will not (create new Future to) increase overhead
  • Be convenient to transfer large files. You can define your own data buffer, decide when to store datas and when to send datas

Install

Releases are available as tags in this repository and can be fetched via nimble:

nimble install httpkit