From e2729be35f298158691157e31334a2f40414f846 Mon Sep 17 00:00:00 2001 From: Joseph Olayanju <49444453+Olayanju-1234@users.noreply.github.com> Date: Mon, 26 Sep 2022 18:16:05 +0100 Subject: [PATCH] Add content for HTTP module (#1873) * Update 100-http-module.md * Update content/roadmaps/107-nodejs/content/107-nodejs-apis/100-http-module.md Co-authored-by: Kamran Ahmed --- .../content/107-nodejs-apis/100-http-module.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/107-nodejs/content/107-nodejs-apis/100-http-module.md b/content/roadmaps/107-nodejs/content/107-nodejs-apis/100-http-module.md index 7e4d4fec0..cf0609163 100644 --- a/content/roadmaps/107-nodejs/content/107-nodejs-apis/100-http-module.md +++ b/content/roadmaps/107-nodejs/content/107-nodejs-apis/100-http-module.md @@ -1 +1,9 @@ -# Http module \ No newline at end of file +# Http module + +To make HTTP requests in Node.js, there is a built-in module HTTP in Node.js to transfer data over the HTTP. To use the HTTP server in node, we need to require the HTTP module using `require()` method. The HTTP module creates an HTTP server that listens to server ports and gives a response back to the client. + +Free Content + +How To Create a Web Server in Node.js with the HTTP Modulet +Node.js Http Module +The Node.js Http Module