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
18
19
20
21
const html = `
<h3 style="text-align: center;">Welcome to my website</h3>
<script src="https://esm.town/v/pomdtr/embed" data-element-id="my-element" type="module"></script>
<!-- anywhere else on your page -->
<div id="my-element">
console.log("hello world!")
</div>
`;
export default function(req: Request) {
return new Response(
html,
{
headers: {
"Content-Type": "text/html",
},
},
);
}
pomdtr-embed_demo.web.val.run
March 11, 2024