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
export default async (request: Request): Promise<Response> => {
return new Response(
/* html */ `<html>
<head>
<script
src="https://unpkg.com/@layerzerolabs/stargate-ui@latest/element.js"
defer
async>
</script>
</head>
<body style="max-height:600px;max-width:475px;background-color:#f0f0f0;">
<stargate-widget theme="dark" />
</body>
</html>`,
{ headers: { "Content-Type": "text/html" } },
);
};
git-stargate.web.val.run
April 25, 2024