add readme

This commit is contained in:
TJ Holowaychuk 2013-12-08 11:08:23 -08:00
parent 8f11c258ec
commit e6b7f4604c

16
Readme.md Normal file
View File

@ -0,0 +1,16 @@
# Koa Examples
A repository containing small examples to illustrate the use of Koa
for creating web applications and other HTTP servers.
## Examples
- [hello-world](tree/master/hello-world) hello world application
- [upload](tree/master/upload) multi-file uploading
- [templates](tree/master/templates) simple view rendering
- [stream-file](tree/master/stream-file) simple file streaming
- [errors](tree/master/errors) error handling & propagation
- [cookies](tree/master/cookies) cookie usage example
- [body-parser](tree/master/body-parser) request body parsing
- [blog](tree/master/blog) multi-route & view rendering