How can we render a plain HTML?

Full Stack Developer with a passion for building web applications. PHP, Node.js, Laravel, MySQL, MongoDB. Love collaborating & making a difference
const express = require("express");
const app = express();
const port = 3000;
app.get("/", (req, res) => {
res.send("Hello world!");
});
app.listen(port, () => {
console.log("Application started and Listening on port ${port}");
});




