const express = require("express"); const bodyparser = require("body-parser"); const app = express(); app.get("/", function(req,res){ res.send("<h1>Hello!</h1>") }); app.listen(3000, function(){ console.log("The server is rinning at port 3000"); });