1
0
Fork 0
waifurudor.de/src/index.js

21 lines
481 B
JavaScript

import { getFromBooru, userDefinedTags } from "./helpers/API.js";
import express from "express";
const app = express();
const port = 3000;
app.get("/", (req, res) => {
res.set("Cache-Control", "no-store");
if (!req.query.tags) {
getFromBooru();
} else {
const tags = req.query.tags.split(",");
userDefinedTags(tags);
}
res.sendFile("src/public/assets/waifu.png", { root: "." });
});
app.listen(port, () => {
console.log(`listening on port ${port}`);
});