Challenge: Creating a Web Server
Learn to create a web server in Node.js by displaying text on the browser using the HTTP module.
We'll cover the following...
Challenge description
In this challenge, we’ll use the HTTP
module in Node.js to create a server. We’ll use the createServer()
method, which helps us execute ...