Created
July 3, 2018 19:19
-
-
Save 1Marc/014b4b1c44d6539753877c32dc3aca30 to your computer and use it in GitHub Desktop.
Node Express Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require("express"); | |
const path = require("path"); | |
const complements = [ | |
"You like nice today", | |
"That dress looks nice on you", | |
"Have you been working out?", | |
"You can do hard things", | |
"You've gotten far in this course. You're really smart", | |
"You're programming! How cool is that?", | |
"I'm really proud of you", | |
"You made this", | |
"You've learned a lot of things, and that's pretty hard to do" | |
]; | |
function getRandomComplement() { | |
const randomIndex = Math.floor(Math.random() * complements.length); | |
return complements[randomIndex]; | |
} | |
const app = express(); | |
app.get("/", function(req, res) { | |
res.sendFile(path.join(__dirname, "index.html"));` | |
}); | |
app.get("/complement", function(req, res) { | |
res | |
.json({ | |
complement: getRandomComplement() | |
}) | |
.end(); | |
}); | |
app.use("/public", express.static("./public")); | |
app.listen(3000); | |
console.log("listening on http://localhost:3000"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment