mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 10:18:26 +01:00
Update 'p/server.js'
This commit is contained in:
parent
b32bf35896
commit
f6abeaa97b
1 changed files with 13 additions and 1 deletions
|
@ -2,6 +2,7 @@ const fs = require("fs");
|
|||
const express = require("express");
|
||||
const fetch = require("node-fetch");
|
||||
const htmlParser = require("node-html-parser");
|
||||
const lyrics = require("./lyrics.js");
|
||||
|
||||
const app = express();
|
||||
|
||||
|
@ -43,6 +44,17 @@ const listener = (req, res) => {
|
|||
};
|
||||
|
||||
app.get("/", (req, res) => res.redirect(`/https://www.google.com/`));
|
||||
|
||||
|
||||
app.get("/api/lyrics", async (req, res) => {
|
||||
const query = req.query.query;
|
||||
|
||||
res.json(await lyrics(query))
|
||||
|
||||
});
|
||||
|
||||
|
||||
app.all("/*", listener);
|
||||
|
||||
app.listen(3000, () => {});
|
||||
|
Loading…
Reference in a new issue