Skip to content

Commit fa19e37

Browse files
committed
initial commit
1 parent b4c4e79 commit fa19e37

File tree

4 files changed

+1052
-0
lines changed

4 files changed

+1052
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

app.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const express = require("express");
2+
const app = express();
3+
const port = 3000;
4+
5+
app.get("/", (req, res) => {
6+
res.send("Hello World!");
7+
});
8+
9+
app.listen(port, () => {
10+
console.log(`Example app listening on port ${port}`);
11+
});

0 commit comments

Comments
 (0)