server.js 166 Bytes
import express from "express"

const app = express();

const PORT = 3000

app.listen(PORT,() => console.log(`The Server is running on http://localhost:${PORT} 🚀`))