Readme

Returning HTML from the Val Town Web API

This just lets you use the standard Response object with our Web API to return an HTML response from this Val.

1
2
3
4
5
6
export const htmlExample = () =>
new Response("<h1>Hello, world</h1>", {
headers: {
"Content-Type": "text/html",
},
});
👆 This is a val. Vals are TypeScript snippets of code, written in the browser and run on our servers. Create scheduled functions, email yourself, and persist small pieces of data — all from the browser.