aoc-automation
Version:
Advent of Code tool to automate the repetitive parts of AoC.
31 lines (26 loc) • 707 B
JavaScript
import express from "express"
const app = express()
const PORT = 1234
app
.use(express.urlencoded({ extended: true }))
.post("*", (req, res) => {
console.log(req.headers)
const data = req.body
switch (data.answer) {
case "RIGHT":
res.send("<main>That's the right answer</main>")
break
case "WRONG":
res.send("<main>That's not the right answer</main>")
break
default:
res.send(`<main>Oops: ${data.answer}</main>`)
}
})
.get("*", (req, res) => {
console.log(req.headers)
res.send("1 2 3 4 5")
})
.listen(PORT, () => {
console.log(`Listening on: http://localhost:${PORT}`)
})