Node.js Connect createServer code

。_饼干妹妹 提交于 2019-12-02 10:33:06
Bergi
  1. app.handle seems to be provided in proto, since there is app.handle defined in proto.js. So, this is a use of a closure, and app.handle is defined not at the time Node parses function app() but later on in the code? Also app itself is defined in..uh..function app(). The code seems funny to me.

Yes, app.handle comes from proto. But no, accessing app inside the app function is not a closure, a function is available by its name in all function declarations.

2. When is function app() invoked? All I know createServer creates the server. So when would I be invoking that function and how?

The connect docs use this example code:

var app = connect();
…
http.createServer(app).listen(3000);

You can see that connect (which is the createServer function you posted) does create the app, which is passed as a handler to the actual http server.

3. Is utils.merge() a common practice instead of inheritance or what? It looks like mixin to me.

Yes, merge does mixin one object into the other. This is done to extend the function object app with all the necessary methods. It is necessary because it is impossible to Define a function with a prototype chain in a standard way. They might have used something along these lines as well:

app.__proto__ = utils.merge(Object.create(EventEmitter.prototype), proto);

but then app wouldn't any longer be instanceof Function; and have no function methods.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!