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

Loïc Hoguin b794439252 Update CHANGELOG 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 fdf2bc93f6 Add asn1 to the list of applications to be started for SSL 12 years ago
src 11493a40f1 Ignore deprecation warning for crypto:sha/1 for now 12 years ago
test fdf2bc93f6 Add asn1 to the list of applications to be started for SSL 12 years ago
.gitignore 845d306df6 Add .cowboy.plt to the gitignore 13 years ago
AUTHORS 6b521563e2 Update AUTHORS 12 years ago
CHANGELOG.md b794439252 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