- Express.js Basics
- Express.js HOME
- Express.js Introduction
- Express.js Installation
- Express.js Basic App
- Express.js Routing
- Basics Routing
- Route Parameters
- Handling Query Strings
- Router Middleware
- Middleware
- What is Middleware?
- Application-Level Middleware
- Router-Level Middleware
- Built-In Middleware
- Error-Handling Middleware
- Third-Party Middleware
- Express.js HTTP
- Handling GET Requests
- Handling POST Requests
- Handling PUT Requests
- Handling DELETE Requests
- Templating Engines
- Using Templating Engines
- Setting Up EJS
- Setting Up Handlebars
- Setting Up Pug
- Request/Response
- Request Object
- Response Object
- Handling JSON Data
- Handling Form Data
- Static Files
- Serving Static Files
- Setting Up Static Folders
- Managing Assets
- Express.js Advanced
- Middleware Stack
- CORS in Express.js
- JWT Authentication
- Session Handling
- File Uploads
- Error Handling
- Databases
- Express.js with MongoDB
- MongoDB CRUD Operations
- Express.js with MySQL
- MySQL CRUD Operations
- Deployment
- Deploying Express.js Apps to Heroku
- Deploying Express.js Apps to AWS
- Deploying Express.js Apps to Vercel
Express.js Response Object
The response object in Express.js is used to send the HTTP response back to the client after processing the request. It contains methods and properties that help in setting the status, headers, and body of the response.
Key Features of the Response Object
- Send Response Data: Allows you to send content such as HTML, JSON, or plain text back to the client.
- Set Response Headers: Provides methods to set custom headers for the response.
- Set Status Code: Allows you to set the HTTP status code for the response.
- Redirects: You can issue a redirect to another URL or route.
- Handle Content Type: Set the type of the response content (e.g., JSON, HTML).
Components of the Response Object
res.send()
The send()
method is used to send a response. It can send various types of data, including strings, objects, arrays, and buffers.
Example:
res.json()
The json()
method is used to send a JSON response. It automatically sets the Content-Type
header to application/json
.
Example:
res.status()
The status()
method sets the HTTP status code of the response. This is important for indicating the outcome of the request (e.g., 200
for success, 404
for not found).
Example:
res.redirect()
The redirect()
method is used to send a redirect response to the client, redirecting them to another URL.
Example:
res.set()
The set()
method is used to set HTTP headers for the response. You can set multiple headers by passing key-value pairs.
Example:
res.cookie()
The cookie()
method is used to set a cookie in the response. This method automatically encodes the cookie value and appends it to the Set-Cookie
header.
Example:
res.sendFile()
The sendFile()
method is used to send a file to the client. This is typically used to serve static files.
Example:
res.render()
The render()
method is used to render a view template (if you are using a templating engine like EJS, Pug, or Handlebars).
Example:
Example Code
Summary
The response
object in Express.js is crucial for sending data back to the client. It provides methods to send different types of responses, set status codes, headers, cookies, and even redirect requests. Understanding these methods is essential for effectively building dynamic and responsive web applications.