mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
71551c80a1
Closes https://github.com/denoland/deno/issues/21828. This API is a huge footgun. And given that "Deno.serveHttp" is a deprecated API that is discouraged to use (use "Deno.serve()" instead); it makes no sense to keep this API around. This is a step towards fully migrating to Hyper 1.
15 lines
500 B
JavaScript
15 lines
500 B
JavaScript
const scope = import.meta.url.slice(-7) === "#worker" ? "worker" : "main";
|
|
|
|
console.log(scope, Deno.HttpClient);
|
|
console.log(scope, Deno.createHttpClient);
|
|
console.log(scope, Deno.http?.HttpConn);
|
|
console.log(scope, Deno.http?._ws);
|
|
console.log(scope, Deno.http?.serve);
|
|
console.log(scope, Deno.http?.upgradeWebSocket);
|
|
|
|
if (scope === "worker") {
|
|
postMessage("done");
|
|
} else {
|
|
const worker = new Worker(`${import.meta.url}#worker`, { type: "module" });
|
|
worker.onmessage = () => Deno.exit(0);
|
|
}
|