Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 341 Bytes

koa_node.md

File metadata and controls

6 lines (4 loc) · 341 Bytes

#koa node

  1. koa 的中间件执行时,遇到 yield next, 关键字时,会被传递到下游中间件(downstream), yield next 捕获不到下一个中间件时, 逆序返回继续执行代码(upstream). 入栈 出栈

  2. 一个或多个 Koa 应用可以被加载到一块 组成一个更大的包含一个 HTTP server 的应用.