Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Why Building HTTP Servers Matters
📖 Scenario: You want to create a simple web server that can respond to requests from browsers or other clients. This helps you understand how websites and web apps work behind the scenes.
🎯 Goal: Build a basic HTTP server in Node.js that listens on a port and sends a simple message back to the client.
📋 What You'll Learn
Create an HTTP server using Node.js built-in http module
Set the server to listen on port 3000
Respond with the exact text Hello, this is my first HTTP server! to every request
Use the createServer method and listen method correctly
💡 Why This Matters
🌍 Real World
Web servers are the backbone of websites and web apps. Knowing how to build one helps you understand how data travels from a server to your browser.
💼 Career
Many developer jobs require understanding HTTP servers to build APIs, web apps, or backend services.
Progress0 / 4 steps
1
Import the HTTP module
Write a line to import the built-in Node.js http module and assign it to a variable called http.
Node.js
Hint
Use require('http') to import the HTTP module.
2
Create the HTTP server
Create a variable called server and assign it the result of http.createServer with a function that takes req and res as parameters.
Node.js
Hint
Use http.createServer((req, res) => { }) to create the server.
3
Send a response message
Inside the server function, use res.writeHead to set status code 200 and content type text/plain. Then use res.end to send the exact text Hello, this is my first HTTP server!.
Node.js
Hint
Use res.writeHead(200, {'Content-Type': 'text/plain'}) and res.end('Hello, this is my first HTTP server!').
4
Make the server listen on port 3000
Call server.listen with the port number 3000 to start the server listening for requests.
Node.js
Hint
Use server.listen(3000) to start the server.
Practice
(1/5)
1. Why is building an HTTP server important in Node.js?
easy
A. It automatically fixes bugs in your code.
B. It makes your computer run faster.
C. It allows your computer to share information over the internet.
D. It helps you write desktop applications.
Solution
Step 1: Understand the role of HTTP servers
HTTP servers let computers send and receive information over the internet.
Step 2: Connect this to Node.js usage
Node.js provides tools to build these servers so your app can communicate online.
Final Answer:
It allows your computer to share information over the internet. -> Option C
Quick Check:
HTTP servers = share info online [OK]
Hint: HTTP servers share info online, not speed or desktop apps [OK]
Common Mistakes:
Thinking HTTP servers speed up the computer
Confusing servers with desktop app tools
Believing servers fix code bugs automatically
2. Which of the following is the correct way to create a basic HTTP server in Node.js using ES modules?
easy
A. import http from 'http'; http.createServer((req, res) => res.end('Hello')).listen(3000);
B. const http = require('http'); http.createServer((req, res) => res.end('Hello')).listen(3000);
C. const http = import('http'); http.createServer((req, res) => res.end('Hello')).listen(3000);
D. const http = require('http'); http.createServer((req, res) => res.send('Hello')).listen(3000);
Solution
Step 1: Identify modern Node.js import syntax
Node.js ES modules use import to load modules, not require.
Step 2: Check server creation and response method
http.createServer with res.end() is correct; res.send() is not a Node.js method.
Final Answer:
import http from 'http'; http.createServer((req, res) => res.end('Hello')).listen(3000); -> Option A
Quick Check:
Use import + res.end() in Node.js 20+ [OK]
Hint: Use import and res.end() for Node.js HTTP servers [OK]
Common Mistakes:
Using require instead of import in ES modules
Using res.send() which is not in Node.js core
Trying to import with const and import() function
3. What will this Node.js HTTP server print when accessed?
import http from 'http';
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Welcome!');
});
server.listen(3000);
medium
A. Error: statusCode is not a property
B. Welcome!
C. undefined
D. Content-Type header missing
Solution
Step 1: Analyze server response setup
The server sets status code 200, sets Content-Type header, and ends response with 'Welcome!'.
Step 2: Understand what client receives
The client will get a plain text response with 'Welcome!' and status 200.
Final Answer:
Welcome! -> Option B
Quick Check:
res.end('Welcome!') sends text response [OK]
Hint: res.end sends the response body text [OK]
Common Mistakes:
Thinking statusCode is invalid property
Expecting undefined instead of response text
Ignoring headers set by setHeader
4. Identify the error in this Node.js HTTP server code:
import http from 'http';
const server = http.createServer((req, res) => {
res.write('Hello');
res.write('World');
res.end();
});
server.listen(3000);
medium
A. No error, code works fine
B. Cannot call res.write multiple times
C. Missing res.end() call
D. res.end() should have a string argument
Solution
Step 1: Review usage of res.write and res.end
Node.js allows multiple res.write calls before res.end to send chunks.
Step 2: Confirm res.end usage
Calling res.end() without argument is valid; it ends the response.
Final Answer:
No error, code works fine -> Option A
Quick Check:
Multiple res.write calls + res.end() is valid [OK]
Hint: Multiple res.write calls are allowed before res.end [OK]
Common Mistakes:
Thinking res.end must have argument
Believing multiple res.write calls cause error
Forgetting res.end is needed to finish response
5. You want to build a Node.js HTTP server that responds with JSON data and handles errors gracefully. Which approach is best?
hard
A. Use http.createServer, set Content-Type to application/json, but do not handle errors.
B. Use http.createServer, send JSON as plain text, ignore errors to keep server fast.
C. Use http.createServer, set Content-Type to text/html, and send JSON string directly.
D. Use http.createServer, set Content-Type to application/json, and wrap response code in try-catch.
Solution
Step 1: Set correct Content-Type for JSON
To send JSON, Content-Type must be 'application/json' so clients parse it properly.
Step 2: Handle errors gracefully
Wrapping response code in try-catch prevents server crashes and sends error info.
Final Answer:
Use http.createServer, set Content-Type to application/json, and wrap response code in try-catch. -> Option D
Quick Check:
JSON needs correct header + error handling [OK]
Hint: Always set JSON header and catch errors in server code [OK]