Deno Webview

We have finally re-written webview_deno to support one of the most important features: webview.bind aka two-way communication between the browser window and deno using what looks and works like normal javascript functions. discord deno

.

First `deno upgrade` then this command line opens a web view like one might expect from Electron. matrix `deno run -Ar --unstable https://deno.land/x/webview/examples/local.ts`

pages/deno-webview

We've modified the extraordinarily simple sample program to launch federated wiki on this page. Download remote.js and run it from the command line.

deno run -A --unstable remote.js

The -A allows all access when only a few are required.

--allow-env --allow-read --allow-ffi.

The --unstable is required by Deno.dlopen, part of the foreign function interface. deno