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 beaae7bf70 Document meta values set by REST
You can use these values to perform a reply using the negotiated
content-type and language for non-HEAD/GET methods.
2013-04-25 17:46:40 +02:00
doc Add a simple README in the doc folder for guidance 2013-03-02 20:16:06 +01:00
examples Fix rest_pastebin example 2013-04-12 12:23:33 -05:00
guide Document meta values set by REST 2013-04-25 17:46:40 +02:00
src Fix an outdated comment 2013-04-22 14:54:22 +02:00
test Update Autobahn test suite to 0.5.3 2013-04-24 21:48:24 +02:00
.gitignore Add .cowboy.plt to the gitignore 2012-04-29 01:20:05 +02:00
AUTHORS Update AUTHORS 2013-03-09 14:45:15 +01:00
CHANGELOG.md Update CHANGELOG 2013-04-03 13:50:36 +02:00
CONTRIBUTING.md Add more details on how to report bugs and vulnerabilities 2013-02-27 18:25:45 +01:00
LICENSE Update version to 0.6.0 2012-05-23 14:53:48 +02:00
Makefile Reorganize the websocket test suite 2013-04-22 17:03:54 +02:00
README.md Salvage the README and move parts into the guide 2013-01-03 16:01:49 +01:00
rebar.config Update Ranch to 0.8.1 2013-04-12 15:24:59 +02:00
ROADMAP.md Add a REST point on the roadmap 2013-02-11 09:37:55 +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