Home > Article > Web Front-end > Instructions for using the http.createServer method in node.js_node.js
Method description:
This function is used to create an HTTP server and use requestListener as the listening function for the request event.
Grammar:
Since this method belongs to the http module, the http module needs to be introduced before use (var http= require("http") )
Receive parameters:
requestListener request processing function, automatically added to the request event, the function passes two parameters:
req request object. If you want to know what attributes req has, you can check "http.request attribute integration".
res Response object, the response to be made after receiving the request. If you want to know what attributes res has, you can check "http.response attribute integration".
Example:
In the example, res specifies the response header, the response body content is node.js, and ends with end.
Finally call the listen function to listen on port 3000.
Hello World
');Source code: