mirror https://github.com/ninenines/cowboy

Loïc Hoguin 2923de944f Update Ranch to 0.8.4 12 years ago
doc a795b34f46 Add a simple README in the doc folder for guidance 12 years ago
examples 2923de944f Update Ranch to 0.8.4 12 years ago
guide 28186a68d0 Make the HTTP version type more practical 12 years ago
manual 4fde6cba94 In content-types, the charset parameter is converted to lowercase 12 years ago
src a63faff35e Add support for the webkit deflate frame extension 12 years ago
test a63faff35e Add support for the webkit deflate frame extension 12 years ago
.gitignore 845d306df6 Add .cowboy.plt to the gitignore 13 years ago
AUTHORS cd974ef9f2 Update AUTHORS 12 years ago
CHANGELOG.md df05b4c9a5 Update CHANGELOG 12 years ago
CONTRIBUTING.md 5c5794d27b Add more details on how to report bugs and vulnerabilities 12 years ago
LICENSE 76e9df51c0 Update LICENSE date 12 years ago
Makefile 2923de944f Update Ranch to 0.8.4 12 years ago
README.md 22f961a7e8 Add Cowboy manual to README 12 years ago
ROADMAP.md 7eca879043 Update ROADMAP 12 years ago
erlang.mk 47396211cf Update erlang.mk 12 years ago
rebar.config 2923de944f Update Ranch to 0.8.4 12 years ago

README.md

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