2012-12-14 10:50:26 +01:00
|
|
|
Cowboy Examples
|
2012-02-20 08:42:45 +01:00
|
|
|
===============
|
|
|
|
|
2013-01-30 00:30:05 +04:00
|
|
|
* [basic_auth](./examples/basic_auth):
|
|
|
|
basic HTTP authorization with REST
|
|
|
|
|
2012-12-14 10:50:26 +01:00
|
|
|
* [chunked_hello_world](./examples/chunked_hello_world):
|
|
|
|
demonstrates chunked data transfer with two one-second delays
|
2012-02-20 08:42:45 +01:00
|
|
|
|
2013-01-07 22:42:16 +01:00
|
|
|
* [compress_response](./examples/compress_response)
|
|
|
|
send a response body compressed if the client supports it
|
|
|
|
|
2012-12-20 14:40:22 +01:00
|
|
|
* [cookie](./examples/cookie):
|
|
|
|
set cookies from server and client side
|
2012-09-27 21:32:11 -07:00
|
|
|
|
2012-12-14 10:50:26 +01:00
|
|
|
* [echo_get](./examples/echo_get):
|
|
|
|
parse and echo a GET query string
|
2012-09-27 21:32:11 -07:00
|
|
|
|
2012-12-14 10:50:26 +01:00
|
|
|
* [echo_post](./examples/echo_post):
|
|
|
|
parse and echo a POST parameter
|
2012-10-01 13:21:45 -07:00
|
|
|
|
2013-01-29 10:18:52 -08:00
|
|
|
* [elixir_hello_world](./examples/elixir_hello_world):
|
|
|
|
simplest example application with Elixir
|
|
|
|
|
2012-12-14 10:50:26 +01:00
|
|
|
* [hello_world](./examples/hello_world):
|
|
|
|
simplest example application
|
|
|
|
|
|
|
|
* [rest_hello_world](./examples/rest_hello_world):
|
|
|
|
return the data type that matches the request type (ex: html, text, json)
|
|
|
|
|
2013-02-06 13:09:49 -06:00
|
|
|
* [rest_pastebin](./examples/rest_pastebin):
|
|
|
|
create text objects and return the data type that matches the request type (html, text)
|
|
|
|
|
2013-01-30 22:13:31 +01:00
|
|
|
* [static_world](./examples/static_world):
|
|
|
|
static file handler
|
2013-01-23 15:05:35 +01:00
|
|
|
|
2013-01-30 14:50:21 +01:00
|
|
|
* [websocket](./examples/websocket):
|
|
|
|
websocket example
|