InterviewSolution
| 1. |
What Is Koa.js Request Object? |
|
Answer» A Koa REQUEST object is an abstraction on top of NODE's vanilla request object, providing additional functionality that is useful for every day HTTP server development. The Koa request object is embeded in the context object, this. Lets log out the request object whenever we get a request: VAR koa = require('koa'); A Koa Request object is an abstraction on top of node's vanilla request object, providing additional functionality that is useful for every day HTTP server development. The Koa request object is embeded in the context object, this. Lets log out the request object whenever we get a request: var koa = require('koa'); |
|