Express.js | app.METHOD() Function
Last Updated :
20 Mar, 2023
The app.METHOD() function is used to route an HTTP request, where METHOD is the HTTP method of the request, such as GET, PUT, POST, and so on, in lowercase. Thus, the actual methods are app.get(), app.post(), app.put(), and so on.
Syntax:
app.METHOD(path, callback [, callback ...])
Parameters:
- Path: The path for which the middleware function is invoked and can be any of:
- A string represents a path.
- A path pattern.
- A regular expression pattern to match paths.
- An array of combinations of any of the above.
- Callback: Callback functions can be:
- A middleware function.
- A series of middleware functions (separated by commas).
- An array of middleware functions.
- A combination of all of the above.
Installation of the express module:
You can visit the link to Install the express module. You can install this package by using this command.
npm install express
After installing the express module, you can check your express version in the command prompt using the command.
npm version express
After that, you can create a folder and add a file, for example, index.js. To run this file you need to run the following command.
node index.js
Project structure:
Filename: index.js
javascript
const express = require('express');
const app = express();
const PORT = 3000;
// Handling GET Request
app.get('/user', function (req, res) {
res.send("Handled GET Request");
});
// Handling POST Request
app.post('/user', function (req, res) {
res.send("Handled POST Request");
});
// Handling DELETE Request
app.delete('/remove', function (req, res) {
res.send("Handled DELETE Request");
});
app.listen(PORT, function (err) {
if (err) console.log("Error in server setup");
console.log("Server listening on Port", PORT);
});
Steps to run the program:
Make sure you have installed the express module using the following command:
npm install express
Run the index.js file using the below command:
node index.js
Output:
Server listening on Port 3000
So this is how you can use the express app.METHOD() function which is the HTTP method of the request, such as GET, PUT, POST, and so on, in lowercase.
Similar Reads
Express.js req.method Property The req.method property contains a string corresponding to the HTTP method of the request which can be either GET, POST, PUT, DELETE, etc. Syntax:req.methodParameter: No parameters. Return Value: String Installation of the express module:You can visit the link to Install the express module. You can
2 min read
Express app.use() Function The app.use() function in Express.js adds middleware to the application's request-processing pipeline. It applies the specified middleware to all incoming requests or to specific routes, allowing you to modify request/response objects, perform operations, or handle errors throughout the application.
3 min read
Difference between app.use() and app.get() in Express.js Express.js, a popular web application framework for Node.js, provides a powerful set of methods for routing HTTP requests. Among these methods, app.use() and app.get() are two fundamental functions that serve different purposes. Understanding their differences is essential for building efficient and
4 min read
Express app.get() Request Function The app.get() function is used to define routes on your server that handle HTTP GET requests. A GET request is typically used when the client asks the server to send back some information, like retrieving a webpage or data from a database.Itâs an essential part of building websites and APIs, as it a
6 min read
Express app.get() Request Function The app.get() function is used to define routes on your server that handle HTTP GET requests. A GET request is typically used when the client asks the server to send back some information, like retrieving a webpage or data from a database.Itâs an essential part of building websites and APIs, as it a
6 min read
How to use the app object in Express ? In Node and Express, the app object has an important role as it is used to define routes and middleware, and handling HTTP requests and responses. In this article, we'll explore the various aspects of the `app` object and how it can be effectively used in Express applications. PrerequisitesNode.js a
3 min read