diff options
author | Marvin Borner | 2020-09-01 17:43:23 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-01 17:43:23 +0200 |
commit | 26ba56205707935f59c413202c3f91010c182d36 (patch) | |
tree | b8652925eccc8b6e1b6376fc37255913d3d05752 /motto/index.js | |
parent | 94a0f1acd5b708e59281040132e953a11b0a9d39 (diff) |
Very much good
Diffstat (limited to 'motto/index.js')
-rw-r--r-- | motto/index.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/motto/index.js b/motto/index.js new file mode 100644 index 0000000..28faf69 --- /dev/null +++ b/motto/index.js @@ -0,0 +1,21 @@ +const express = require("express"); +const fs = require("fs"); +const app = express(); + +app.use(express.urlencoded({ extended: true })); +app.use(express.json()); + +app.use("/", express.static(__dirname + "/public")); + +app.get("/api/list", (req, res) => { + fs.readFile("list.txt", "utf8", (err, data) => { + res.send(data); + }); +}); + +app.post("/api/vote", (req, res) => { + console.log(req.body.text, req.body.vote); + res.send("ok"); +}); + +app.listen(3000); |