Approach 3 Using Middleware

Express middleware functions, distinct in their ability to interact with requests and responses, are employed in this case to handle all incoming requests and respond with a simple “Hello, World!” greeting.

Example: Below is the example to print hello world using middleware.

Javascript




const express = require('express');
const app = express();
 
app.use((req, res) => {
  res.send('<h1>Hello, World!</h1>');
});
 
app.listen(8000, () => console.log('Server listening on port 8000'));


Output:

Output



Print hello world using Express JS

In this article, we will learn how to print Hello World using Express jS. Express JS is a popular web framework for Node.js. It provides various features that make it easy to create and maintain web applications.

Similar Reads

Express Js Program to Print Hello world:

“Hello, World!” in Express JS serves as an excellent entry point to familiarize yourself with the framework and embark on the exploration of its functionalities. Moreover, it provides a gratifying experience, allowing you to immerse yourself in the excitement of coding and initiate your path as an Express.js developer....

Approach 1: Using Basic Routes:

It is simple to print Hello World by defining a root URL (“/”). When a GET request is made to the root URL, the server responds with “Hello, World!”....

Approach 2: Using Arrow Function:

...

Approach 3: Using Middleware:

Arrow functions in JavaScript offer a more streamlined way to write functions, featuring a simplified syntax, implicit return for single expressions, and lexical scoping of the `this` keyword....

Contact Us