add caching of responses (for 5mins)
Some checks failed
Publish Docker Images / docker (push) Failing after 7s

This commit is contained in:
Lee
2023-11-16 15:54:59 +00:00
parent 355a76845e
commit 6b08b8fc7a
5 changed files with 75 additions and 8 deletions

View File

@ -26,7 +26,6 @@ export default class ProxyRoute extends Route {
res.status(400).json(RouteMessages.badRequest("No URL provided"));
return;
}
// TODO: handle rate limiting? and/or caching?
try {
const response = await axios.get(url, {
headers: {