Initial commit (by create-cloudflare CLI)

Details:
  C3 = create-cloudflare@2.52.3
  project name = twitch-cloud-ebs
  package manager = npm@10.9.2
  wrangler = wrangler@4.42.1
  git = 2.47.3
This commit is contained in:
2025-10-20 01:05:41 -07:00
parent a01835b818
commit 7dd84c77a4
19 changed files with 12396 additions and 2078 deletions
+32
View File
@@ -0,0 +1,32 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hello, World!</title>
</head>
<body>
<h1 id="heading"></h1>
<p>This page comes from a static asset stored at `public/index.html` as configured in `wrangler.jsonc`.</p>
<button id="button" type="button">Fetch a random UUID</button>
<output id="random" for="button"></output>
<script>
fetch('/message')
.then((resp) => resp.text())
.then((text) => {
const h1 = document.getElementById('heading');
h1.textContent = text;
});
const button = document.getElementById("button");
button.addEventListener("click", () => {
fetch('/random')
.then((resp) => resp.text())
.then((text) => {
const random = document.getElementById('random');
random.textContent = text;
});
});
</script>
</body>
</html>