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 8993249e42 Fix typespecs of cowboy_websocket:handler_terminate
Pointed out during the ConcuError tutorial by Kostis. Thanks! :-)
2014-03-08 19:51:39 +01:00
examples Merge branch 'typofix' of git://github.com/Etsukata/cowboy 2013-12-28 17:53:53 +01:00
guide Update and improve Websocket chapters in the guide 2014-03-03 16:59:02 +01:00
manual Fix cowboy:stop_listener/1 spec in manual 2014-02-21 00:31:38 +03:30
src Fix typespecs of cowboy_websocket:handler_terminate 2014-03-08 19:51:39 +01:00
test Update copyright years 2014-02-06 19:57:23 +01:00
.gitignore Cleanup .gitignore 2014-02-19 20:19:03 +01:00
all.sh Add R16B03-1 to the list of releases to test 2014-02-05 17:34:03 +01:00
AUTHORS Update AUTHORS 2013-11-14 16:49:25 +01:00
CHANGELOG.md Update CHANGELOG 2013-11-14 16:48:12 +01:00
CONTRIBUTING.md Add note about SSL tests requiring R16B01 2013-08-31 10:24:11 +02:00
erlang.mk Now testing on R15B01+ and maint and master git branches 2013-12-29 14:57:01 +01:00
LICENSE Update copyright years 2014-02-06 19:57:23 +01:00
Makefile Update cowlib to 0.5.1 to fix multipart issues 2014-02-19 19:09:58 +01:00
README.md README.md: tweak grammer 2014-01-07 08:58:35 +11:00
rebar.config Update cowlib to 0.5.1 to fix multipart issues 2014-02-19 19:09:58 +01:00
ROADMAP.md Update ROADMAP 2013-11-14 15:34:16 +01: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 protocol development is sponsored by LeoFS Cloud Storage.

Getting Started

Support