0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00
Small, fast, modern HTTP server for Erlang/OTP.
Find a file
2013-05-31 15:23:53 +02:00
doc Add a simple README in the doc folder for guidance 2013-03-02 20:16:06 +01:00
examples Update Ranch to 0.8.3 2013-05-16 19:10:32 +02:00
guide Make the HTTP version type more practical 2013-05-16 12:56:01 +02:00
manual Improve generate_etag return value description 2013-05-31 15:23:53 +02:00
src Merge branch 'rest_method' of git://github.com/dvv/cowboy 2013-05-31 15:13:24 +02:00
test Add experimental and incomplete SPDY support 2013-05-30 20:21:01 +02:00
.gitignore Add .cowboy.plt to the gitignore 2012-04-29 01:20:05 +02:00
AUTHORS Update AUTHORS 2013-05-24 15:16:24 +02:00
CHANGELOG.md Update CHANGELOG 2013-05-24 15:15:24 +02:00
CONTRIBUTING.md Add more details on how to report bugs and vulnerabilities 2013-02-27 18:25:45 +01:00
erlang.mk Change some module calls to local function calls 2013-05-15 14:46:24 +02:00
LICENSE Update LICENSE date 2013-04-30 18:51:18 +02:00
Makefile Add experimental and incomplete SPDY support 2013-05-30 20:21:01 +02:00
README.md Add Cowboy manual to README 2013-05-17 17:16:43 +02:00
rebar.config Update Ranch to 0.8.3 2013-05-16 19:10:32 +02:00
ROADMAP.md Update ROADMAP 2013-05-24 14:59: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 parts 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.

Getting Started

Support