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

31 lines
857 B
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
2012-09-27 21:32:11 -07: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)
* [static](./examples/static):
an example file server