Current Path : /home/infinitibizsol/.trash/ |
Current File : /home/infinitibizsol/.trash/app.js.5 |
// const express = require("express"); const express=require('express'); const app = express(); const PORT = process.env.PORT || 3000; // Define a single route app.get("/", (req, res) => { res.send("Hello, World!"); }); // Start the server app.listen(PORT, () => { console.log(`Server is running on http://localhost:${PORT}`); });