0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
cowboy/guide/toc.md

69 lines
1.5 KiB
Markdown
Raw Normal View History

2012-10-15 14:35:52 +02:00
Cowboy User Guide
=================
2013-06-27 00:02:12 +02:00
The Cowboy User Guide explores the modern Web and how to make
best use of Cowboy for writing powerful web applications.
Introducing Cowboy
------------------
2012-10-15 14:35:52 +02:00
* [Introduction](introduction.md)
2013-06-27 00:02:12 +02:00
* [The modern Web](modern_web.md)
* [Erlang and the Web](erlang_web.md)
* [Erlang for beginners](erlang_beginners.md)
* [Getting started](getting_started.md)
HTTP
----
2013-06-27 00:02:12 +02:00
* [The life of a request](http_req_life.md)
* [Routing](routing.md)
* [Handling plain HTTP requests](http_handlers.md)
* [The Req object](req.md)
* [Reading the request body](req_body.md)
* [Sending a response](resp.md)
* [Using cookies](cookies.md)
2014-06-25 11:23:58 +02:00
Multipart
---------
* [Introduction to multipart](multipart_intro.md)
* [Multipart requests](multipart_req.md)
Static files
------------
* [Static handler](static_handlers.md)
REST
----
* [REST principles](rest_principles.md)
* [Handling REST requests](rest_handlers.md)
* [REST flowcharts](rest_flowcharts.md)
* [Designing a resource handler](resource_design.md)
2014-06-25 11:23:58 +02:00
Websocket
---------
* [The Websocket protocol](ws_protocol.md)
* [Handling Websocket connections](ws_handlers.md)
2014-06-25 11:23:58 +02:00
Server push
-----------
2014-06-25 11:23:58 +02:00
* [Loop handlers](loop_handlers.md)
2014-06-25 11:23:58 +02:00
Pluggable interface
-------------------
* [Middlewares](middlewares.md)
2014-06-25 11:23:58 +02:00
* [Protocol upgrades](upgrade_protocol.md)
* [Hooks](hooks.md)
2014-06-25 11:23:58 +02:00
Internals
---------
2014-06-25 11:23:58 +02:00
* [Architecture](architecture.md)
* [Dealing with broken clients](broken_clients.md)