mirror of
https://github.com/tulayang/httpkit
synced 2026-01-02 08:34:39 +00:00
No description
| httpkit | ||
| test | ||
| .gitignore | ||
| .travis.yml | ||
| config.nims | ||
| httpkit.nim | ||
| httpkit.nimble | ||
| LICENSE | ||
| README.md | ||
HttpKit 
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
asyncdispatchandasyncnet, HttpKit will not (create newFutureto) 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