mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
5beec3f106
- Merge "Deno.serve()" and "Deno.serveTls()" API - Remove first argument and use "fetch" field options instead - Update type declarations - Add more documentation
29 lines
553 B
JavaScript
29 lines
553 B
JavaScript
import { renderToReadableStream } from "https://esm.run/react-dom/server";
|
|
import * as React from "https://esm.run/react";
|
|
const { serve } = Deno;
|
|
const addr = Deno.args[0] || "127.0.0.1:4500";
|
|
const [hostname, port] = addr.split(":");
|
|
|
|
const App = () => (
|
|
<html>
|
|
<body>
|
|
<h1>Hello World</h1>
|
|
</body>
|
|
</html>
|
|
);
|
|
|
|
const headers = {
|
|
headers: {
|
|
"Content-Type": "text/html",
|
|
},
|
|
};
|
|
|
|
serve(
|
|
{
|
|
fetch: async () => {
|
|
return new Response(await renderToReadableStream(<App />), headers);
|
|
},
|
|
hostname,
|
|
port,
|
|
},
|
|
);
|