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
export default async function(req: Request): Promise<Response> {
const statusDoc = "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/418";
const text = `I am a teapot 🫖\n\n${statusDoc}`;
return new Response(text, { status: 418 });
}
agmm-teapot.web.val.run
February 29, 2024