0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
Small, fast, modern HTTP server for Erlang/OTP.
Find a file
Loïc Hoguin 73f65d5a75 Document the HTTP status codes Cowboy may send in the manual
422 is left out as it's soon to be replaced by 400.
2014-06-26 14:32:20 +02:00
examples Add a simple multipart upload example 2014-06-03 19:20:07 +02:00
guide Wrap-up the user guide 2014-06-25 11:23:58 +02:00
manual Document the HTTP status codes Cowboy may send in the manual 2014-06-26 14:32:20 +02:00
src Update Cowboy to 0.10.0 2014-06-10 12:07:11 +02:00
test Allow users to pass a raw binary() as the expires header. 2014-06-10 00:12:26 +02:00
.gitignore Cleanup .gitignore 2014-02-19 20:19:03 +01:00
all.sh Cowboy works fine under 17.1 2014-06-25 18:19:26 +02:00
AUTHORS Update AUTHORS 2014-06-10 12:02:58 +02:00
CHANGELOG.md Update CHANGELOG and ROADMAP 2014-06-10 12:00:30 +02:00
CONTRIBUTING.md Add note about SSL tests requiring R16B01 2013-08-31 10:24:11 +02:00
erlang.mk Update erlang.mk 2014-03-24 14:06:11 +01:00
LICENSE Update copyright years 2014-02-06 19:57:23 +01:00
Makefile Update Ranch to 0.10.0 2014-06-10 11:36:55 +02:00
README.md Kato.im added to the list of sponsors 2014-04-14 12:09:56 +02:00
rebar.config Update Ranch to 0.10.0 2014-06-10 11:36:55 +02:00
ROADMAP.md Update CHANGELOG and ROADMAP 2014-06-10 12:00:30 +02:00

Cowboy

Cowboy is a small, fast and modular HTTP server written in Erlang.

Goals

Cowboy aims to provide a complete HTTP stack in a small code base. It is optimized for low latency and low memory usage, in part because it uses binary strings.

Cowboy provides routing capabilities, selectively dispatching requests to handlers written in Erlang.

Because it uses Ranch for managing connections, Cowboy can easily be embedded in any other application.

No parameterized module. No process dictionary. Clean Erlang code.

Sponsors

The SPDY implementation was sponsored by LeoFS Cloud Storage.

The project is currently sponsored by Kato.im.

Getting Started

Support