Chapter 12: move Chapter13 to Chapter12

This commit is contained in:
Beth Griggs
2020-11-10 01:35:45 +00:00
parent be3ada6586
commit 473d903805
40 changed files with 0 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
const express = require("express");
const app = express();
app.get("/", (req, res) => {
res.send("Hello World!");
});
app.listen(3000, () => {
console.log("Server listening on port 3000");
setInterval(() => {
console.log("Server listening...");
}, 3000);
});