Skip to content

Commit

Permalink
Setup Project
Browse files Browse the repository at this point in the history
  • Loading branch information
ubongedem78 committed Jan 3, 2024
1 parent 462faad commit c83b528
Show file tree
Hide file tree
Showing 3 changed files with 1,093 additions and 0 deletions.
12 changes: 12 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const express = require("express");
const app = express();

app.get("/", (req, res) => {
res.send("Hello World!");
});

const PORT = process.env.PORT || 3000;

app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
});
Loading

0 comments on commit c83b528

Please sign in to comment.