From 55a475aa172fe49c5cb4fb1f69fa7c1e375f59ca Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 30 Jul 2026 13:33:27 -0700 Subject: [PATCH] chore: remove eszip-viewer link and crux.land example eszip-viewer.deno.dev and crux.land are being shut down. --- README.md | 2 -- js/examples/build.ts | 6 ------ js/examples/worker.tsx | 17 ----------------- 3 files changed, 25 deletions(-) delete mode 100644 js/examples/build.ts delete mode 100644 js/examples/worker.tsx diff --git a/README.md b/README.md index 3339fb9..d5556a8 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ single compact file. The eszip file format is designed to be compact and streaming capable. This allows for efficient loading of large ECMAScript module graphs. -https://eszip-viewer.deno.dev/ is a tool for inspecting eszip files. - > **Note:** The Rust `eszip` crate source code has been moved to the > [denoland/deno](https://github.com/denoland/deno) repository. This repository > contains the JavaScript/WebAssembly bindings that wrap the diff --git a/js/examples/build.ts b/js/examples/build.ts deleted file mode 100644 index 97123d3..0000000 --- a/js/examples/build.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { build } from "../mod.ts"; - -const path = new URL("./worker.tsx", import.meta.url).href; -console.log(path); -const eszip = await build([path]); -console.log(eszip); diff --git a/js/examples/worker.tsx b/js/examples/worker.tsx deleted file mode 100644 index ae66805..0000000 --- a/js/examples/worker.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import { serve } from "https://deno.land/std@0.114.0/http/server.ts"; -import { h, ssr, tw } from "https://crux.land/nanossr@0.0.1"; - -const Hello = (props) => ( -
-

- Hello {props.name}! -

-
-); - -console.log("Listening on http://localhost:8000"); -await serve((req) => { - const url = new URL(req.url); - const name = url.searchParams.get("name") ?? "world"; - return ssr(() => ); -});