0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 04:30:25 +00:00
Small, fast, modern HTTP server for Erlang/OTP.
Find a file
Loïc Hoguin 647e95aed1 Replace terminate/2 with terminate/3, adding a Reason
This should have been done a *long* time ago, back when I initially
added Websocket support. This is the first part of two in improving
loop handler support with regards to socket closure.

Reason may include: {normal, shutdown} for the most normal shutdown,
{normal, timeout} for a loop handler timeout shutdown, or {error, _}
if an error occured.
2013-01-22 02:34:18 +01:00
doc Update version to 0.6.0 2012-05-23 14:53:48 +02:00
examples Replace terminate/2 with terminate/3, adding a Reason 2013-01-22 02:34:18 +01:00
guide Replace terminate/2 with terminate/3, adding a Reason 2013-01-22 02:34:18 +01:00
src Replace terminate/2 with terminate/3, adding a Reason 2013-01-22 02:34:18 +01:00
test Replace terminate/2 with terminate/3, adding a Reason 2013-01-22 02:34:18 +01:00
.gitignore Add .cowboy.plt to the gitignore 2012-04-29 01:20:05 +02:00
AUTHORS Update AUTHORS file 2012-08-09 10:02:18 +02:00
CHANGELOG.md Small Markdown fixes to better follow the specs 2012-12-07 16:19:08 +01:00
CONTRIBUTING.md Add CONTRIBUTING.md file 2012-10-05 00:28:12 +02:00
LICENSE Update version to 0.6.0 2012-05-23 14:53:48 +02:00
Makefile Add recursive dependency fetching to the Makefile 2013-01-17 16:04:03 +01:00
README.md Salvage the README and move parts into the guide 2013-01-03 16:01:49 +01:00
rebar.config Stop using rebar in the Makefile 2013-01-05 17:25:04 +01:00
ROADMAP.md Small Markdown fixes to better follow the specs 2012-12-07 16:19:08 +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 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

  • Read the guide
  • Look at the examples in the examples/ directory
  • Build API documentation with make docs; open doc/index.html

Support