简体   繁体   中英

new to node.js - “http.Server” events

How can we listen to "http.Server" events? Or how can we instantiate a "http.Server" object?

According to nodejs.org/api.html:

"http.Server" is an EventEmitter with events like "request", "connection" .. etc.

However I can't find a way to listen to these event as I am not sure how to instantiate a "http.Server" object. All examples I can find are using "http.createServer" and the api return a new web server object instead of a EventEmitter object.

So, if I would like to know "connection" event, how should i do so?

You need to use net.CreateServer to create an instance of http.Server .

var server = net.CreateServer(callbackForTheConnectionEvent);
server.listen(1234, 'localhost');

Take a look at my code in this answer:
Node.js: Connecting to a Server Using Sockets

(just copying it wouldn't make much sense...)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM