Skip to content

Instantly share code, notes, and snippets.

@1Marc
Created July 3, 2018 19:19
Show Gist options
  • Save 1Marc/014b4b1c44d6539753877c32dc3aca30 to your computer and use it in GitHub Desktop.
Save 1Marc/014b4b1c44d6539753877c32dc3aca30 to your computer and use it in GitHub Desktop.
Node Express Server
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