- Node.js Tutorial
- NodeJS Home
- NodeJS Introduction
- NodeJS Setup
- NodeJS First App
- NodeJS REPL
- NodeJS Command Line
- NodeJS NPM
- NodeJS Callbacks
- NodeJS Events
- NodeJS Event-Loop
- NodeJS Event-Emitter
- NodeJS Global-Objects
- NodeJS Console
- NodeJS Process
- NodeJS Buffers
- NodeJS Streams
- Node.js File Handling
- Node.js File System
- Node.js Read/Write File
- Working with folders in Node.js
- HTTP and Networking
- Node.js HTTP Module
- Anatomy of an HTTP Transaction
- Node.js MongoDB
- MongoDB Get Started
- MongoDB Create Database
- MongoDB Create Collection
- MongoDB Insert
- MongoDB Find
- MongoDB Query
- MongoDB Sort
- MongoDB Delete
- MongoDB Update
- MongoDB Limit
- MongoDB Join
- Node.js MySQL
- MySQL Get Started
- MySQL Create Database
- MySQL Create Table
- MySQL Insert Into
- MySQL Select From
- MySQL Where
- MySQL Order By
- MySQL Delete
- MySQL Update
- MySQL Join
- Node.js Modules
- Node.js Modules
- Node.js Built-in Modules
- Node.js Utility Modules
- Node.js Web Module
- Node.js Advanced
- Node.js Debugger
- Node.js Scaling Application
- Node.js Packaging
- Node.js Express Framework
- Node.js RESTFul API
- Node.js Useful Resources
- Node.js Useful Resources
- Node.js Discussion
Node.js HTTP Module
The http
module in Node.js provides the necessary functionality to create web servers and handle HTTP requests and responses. It is built into Node.js and can be used to build web applications, APIs, or simply handle incoming HTTP requests.
Key Features of the HTTP Module
- Creating HTTP Servers: You can create a simple server to handle HTTP requests and send responses.
- Handling Requests: The module allows you to parse incoming HTTP requests and process data.
- Sending Responses: It enables sending various types of HTTP responses, including status codes, headers, and content.
- Customizable Server Configuration: You can configure the server to handle different request methods, headers, and data types.
Creating an HTTP Server
1. http.createServer()
The http.createServer()
method is used to create an HTTP server that listens for incoming requests and sends responses.
const http = require('http');
const server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello, World!');
});
server.listen(3000, () => {
console.log('Server running on port 3000');
});
Output:
Server running on port 3000
- When a user accesses the server on port 3000, they will see the response "Hello, World!" in their browser.
Handling Different Request Methods
The HTTP server can handle different types of HTTP methods, such as GET, POST, and PUT. The request object provides access to the request method and headers.
1. Handling GET Requests
const http = require('http');
const server = http.createServer((req, res) => {
if (req.method === 'GET') {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('This is a GET request');
}
});
server.listen(3000, () => {
console.log('Server running on port 3000');
});
Output:
This is a GET request
- When a GET request is made to the server, the response will contain "This is a GET request."
2. Handling POST Requests
const http = require('http');
const server = http.createServer((req, res) => {
if (req.method === 'POST') {
let body = '';
req.on('data', chunk => {
body += chunk;
});
req.on('end', () => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end(`Received POST data: ${body}`);
});
}
});
server.listen(3000, () => {
console.log('Server running on port 3000');
});
Output:
Received POST data: {"name":"John","age":30}
- When a POST request is made, the server processes the incoming data and responds with it.
Sending HTTP Responses
You can send various types of HTTP responses, including status codes and headers, using the res.writeHead()
method.
1. Sending a 404 Error
const http = require('http');
const server = http.createServer((req, res) => {
res.writeHead(404, { 'Content-Type': 'text/plain' });
res.end('Page Not Found');
});
server.listen(3000, () => {
console.log('Server running on port 3000');
});
Output:
Page Not Found
- This sends a 404 status code with the message "Page Not Found."
Making HTTP Requests
Node.js also allows you to make HTTP requests using the http
module.
1. Making a GET Request
const http = require('http');
http.get('http://www.example.com', (res) => {
let data = '';
res.on('data', (chunk) => {
data += chunk;
});
res.on('end', () => {
console.log(data);
});
});
- This makes a GET request to
http://www.example.com
and logs the response data.
Summary
The http
module in Node.js is essential for creating web servers and handling HTTP requests and responses. With it, you can create a server, process different request types (such as GET and POST), send responses with custom status codes and headers, and even make HTTP requests to external servers. This module forms the backbone of building APIs, web applications, and services in Node.js.