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
Ali Sabil fdd67b72a3 Fix the reading of the localhost MTU in the HTTP tests
Sometimes the localhost interface has a different name from "lo",
this fix adds a helper function to read the MTU value when the
interface name starts with "lo".
2013-06-07 12:01:01 +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 In content-types, the charset parameter is converted to lowercase 2013-05-31 18:38:43 +02:00
src Add sendfile support to SPDY, enabling cowboy_static use 2013-06-03 19:10:03 +02:00
test Fix the reading of the localhost MTU in the HTTP tests 2013-06-07 12:01: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