Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 544 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 544 Bytes

mini-koa

A concise implementation of Koa, for better and easier understanding.

Code Structure

└── mini-koa
    ├── lib
    │   ├── application.js
    │   ├── context.js
    │   ├── request.js
    │   └── response.js
    ├── tool
    │   ├── compose.js
    │   └── delegator.js
    ├── demo.js
    ├── index.js
    ├── package.json
    └── README.md

Core Conceptions

  1. Koa is a light-weight http server base on Node.js http module.