We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
// index.js /** * External Modules */ const express = require("express"); /** * App Variables */ const app = express(); const port = "8000"; /** * Routes */ app.get("/", (req, res) => { res.status(200).send("Email sent"); }); /** * Server Activation */ app.listen(port, () => { console.log(`Listening on http://localhost:${port}`); });