Public
HTTP (deprecated)
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { parseFeed } from "jsr:@mikaelporttila/rss@*";
export default async function(req: Request): Promise<Response> {
return new Response(
(await parseFeed(
await (await fetch(
"https://xkcd.com/atom.xml",
)).text(),
)).entries[0].description?.value!,
{
status: 200,
headers: {
"content-type": "text/html",
},
},
);
}
loading-xkcd.web.val.run
July 23, 2024