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 228cebaf04 Add rfc7230 test suite and update others to recent Gun
This is a large commit.

The rfc7230 test suite adds many tests from the RFC7230 document.

Gun has been updated quite a bit recently, which broke the Cowboy
suites. This is now fixed with this commit.

A new hook onfirstrequest has been added. It was very useful during
debugging of the test suites.

The initial process code has changed a little; more changes are
expected with the switch to maps for options.
2015-05-05 19:59:37 +03:00
doc/src Add rfc7230 test suite and update others to recent Gun 2015-05-05 19:59:37 +03:00
examples Fix cookie example 2015-02-16 16:57:59 +01:00
src Add rfc7230 test suite and update others to recent Gun 2015-05-05 19:59:37 +03:00
test Add rfc7230 test suite and update others to recent Gun 2015-05-05 19:59:37 +03:00
.gitignore Provide installable man pages 2014-07-06 13:10:35 +02:00
all.sh Update version to 2.0.0-pre.1 2014-10-04 17:01:43 +03:00
AUTHORS Update AUTHORS 2014-10-04 13:32:51 +03:00
build.config Update erlang.mk 2014-11-07 14:25:34 +02:00
CHANGELOG.md Update CHANGELOG 2014-10-04 15:50:53 +03:00
CONTRIBUTING.md Add note about SSL tests requiring R16B01 2013-08-31 10:24:11 +02:00
erlang.mk Add rfc7230 test suite and update others to recent Gun 2015-05-05 19:59:37 +03:00
LICENSE Update copyright years 2014-02-06 19:57:23 +01:00
Makefile Add rfc7230 test suite and update others to recent Gun 2015-05-05 19:59:37 +03:00
README.md Add rfc7230 test suite and update others to recent Gun 2015-05-05 19:59:37 +03:00
rebar.config Update Cowlib to 1.2.0; adds Websocket permessage-deflate 2015-03-06 01:56:30 +01:00
ROADMAP.md Update ROADMAP 2014-10-04 13:26:40 +03: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 project is currently sponsored by Kato.im.

The SPDY implementation was sponsored by LeoFS Cloud Storage.

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