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

39 lines
1.1 KiB
Markdown
Raw Normal View History

Cowboy Examples
===============
* [basic_auth](./examples/basic_auth):
basic HTTP authorization with REST
* [chunked_hello_world](./examples/chunked_hello_world):
demonstrates chunked data transfer with two one-second delays
* [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
* [echo_get](./examples/echo_get):
parse and echo a GET query string
2012-09-27 21:32:11 -07:00
* [echo_post](./examples/echo_post):
parse and echo a POST parameter
2013-01-29 10:18:52 -08:00
* [elixir_hello_world](./examples/elixir_hello_world):
simplest example application with Elixir
* [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)
* [rest_pastebin](./examples/rest_pastebin):
create text objects and return the data type that matches the request type (html, text)
* [static_world](./examples/static_world):
static file handler
2013-01-23 15:05:35 +01:00
* [websocket](./examples/websocket):
websocket example