aboutsummaryrefslogtreecommitdiff
path: root/motto/index.js
diff options
context:
space:
mode:
authorMarvin Borner2020-09-01 17:43:23 +0200
committerMarvin Borner2020-09-01 17:43:23 +0200
commit26ba56205707935f59c413202c3f91010c182d36 (patch)
treeb8652925eccc8b6e1b6376fc37255913d3d05752 /motto/index.js
parent94a0f1acd5b708e59281040132e953a11b0a9d39 (diff)
Very much good
Diffstat (limited to 'motto/index.js')
-rw-r--r--motto/index.js21
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);