A concise implementation of Koa, for better and easier understanding.
└── mini-koa
├── lib
│ ├── application.js
│ ├── context.js
│ ├── request.js
│ └── response.js
├── tool
│ ├── compose.js
│ └── delegator.js
├── demo.js
├── index.js
├── package.json
└── README.md
- Koa is a light-weight http server base on Node.js http module.