Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,12 @@ Specific version:

```js
import { WebUI } from "jsr:@webui/deno-webui@2.5.11";
// Or
import { WebUI } from "https://deno.land/x/webui@2.5.11/mod.ts";
```

Latest version:

```js
import { WebUI } from "jsr:@webui/deno-webui";
// Or
import { WebUI } from "https://deno.land/x/webui/mod.ts";
```

## Minimal Example
Expand Down
2 changes: 1 addition & 1 deletion examples/custom_file_handler/custom_file_handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// import { WebUI } from "../../mod.ts";

// To import from online package registry (Production)
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/webui@2.5.11/mod.ts";
import { WebUI } from "@webui/deno-webui";

// Return HTTP header + file raw binary content
const getFile = async (
Expand Down
2 changes: 1 addition & 1 deletion examples/custom_web_server/custom_web_server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// import { WebUI } from "../../mod.ts";

// To import from online package registry (Production)
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/webui@2.5.11/mod.ts";
import { WebUI } from "@webui/deno-webui";

function allEvents(e: WebUI.Event) {
/*
Expand Down
2 changes: 1 addition & 1 deletion examples/frameless/frameless.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// import { WebUI } from "../../mod.ts";

// To import from online package registry (Production)
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/webui@2.5.11/mod.ts";
import { WebUI } from "@webui/deno-webui";

const myHtml = `
<html>
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world/hello_world.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// import { WebUI } from "../../mod.ts";

// To import from online package registry (Production)
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/webui@2.5.11/mod.ts";
import { WebUI } from "@webui/deno-webui";

const myHtml = `<!DOCTYPE html>
<html>
Expand Down
2 changes: 1 addition & 1 deletion examples/send_raw_binary/send_raw_binary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// import { WebUI } from "../../mod.ts";

// To import from online package registry (Production)
import { WebUI } from "@webui/deno-webui"; // import {WebUI} from "https://deno.land/x/webui@2.5.11/mod.ts";
import { WebUI } from "@webui/deno-webui";

const myHtml = `<!DOCTYPE html>
<html>
Expand Down