0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 04:10:24 +00:00
Small, fast, modern HTTP server for Erlang/OTP.
Find a file
Nicholas Lundgaard cd7f4d9ac5
Update ranch to 1.3.1 in rebar.config
Update to match the Makefile change in 3a240eb49b. Fixes #1088
2017-02-04 14:09:16 +01:00
doc/src Fix getting started for new Erlang.mk 2016-01-15 11:22:22 +01:00
examples Add an index.html that is also served statically as the default for / 2015-02-17 11:53:08 +01:00
src Update to 1.1.0 2017-01-31 18:56:07 +01:00
test cowboy_static: Add support for files in EZ archives 2017-01-31 16:19:45 +01:00
.gitignore Provide installable man pages 2014-07-06 13:10:35 +02:00
all.sh Update to erlang.mk 1.0.0 2014-08-01 14:26:51 +02:00
AUTHORS Update Cowboy to 1.0.3 2015-08-07 17:42:48 +02:00
CHANGELOG.md Update to 1.0.4 2015-11-16 16:10:43 +01:00
circle.yml Update apt-get before installing things on CI 2015-08-16 20:23:27 +02:00
CONTRIBUTING.md Add note about SSL tests requiring R16B01 2013-08-31 10:24:11 +02:00
erlang.mk Update Erlang.mk 2017-01-31 18:10:46 +01:00
LICENSE Update copyright years 2014-02-06 19:57:23 +01:00
Makefile Update Ranch to 1.3.1 2017-01-31 18:10:20 +01:00
README.md Provide installable man pages 2014-07-06 13:10:35 +02:00
rebar.config Update ranch to 1.3.1 in rebar.config 2017-02-04 14:09:16 +01:00
ROADMAP.md Remove 1.0 section in the ROADMAP 2014-08-01 14:43:04 +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 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 implementation was sponsored by LeoFS Cloud Storage.

The project is currently sponsored by Kato.im.

Online documentation

Offline documentation

  • While still online, run make docs
  • Function reference man pages available in doc/man3/ and doc/man7/
  • Run make install-docs to install man pages on your system
  • Full documentation in Markdown available in doc/markdown/
  • Examples available in examples/

Getting help