webview_deno
Webview is a tiny cross-platform library to make web-based GUIs for desktop applications.
โ ๏ธ This project is still in development. Expect breaking changes.

Installation
Webview is published to jsr.io and deno.land. The recommended way to use it is to use JSR:
deno add @webview/webviewor without the CLI:
import { Webview } from "jsr:@webview/webview";Example
import { Webview } from "@webview/webview";
const html = `
<html>
<body>
<h1>Hello from deno v${Deno.version.deno}</h1>
</body>
</html>
`;
const webview = new Webview();
webview.navigate(`data:text/html,${encodeURIComponent(html)}`);
webview.run();You can run this example directly from the web:
deno run -Ar --unstable https://deno.land/x/webview/examples/local.tsor in your development environment:
deno run -Ar --unstable examples/local.tsyou can find other examples in the examples/ directory.
Documentation
You can find the official documentation here.
Development
Prerequisites
Linux
- webkit2gtk (to install using apt:
sudo apt-get install libwebkit2gtk-4.0-dev)
Building
Make sure to init the webview submodule with:
$ git submodule update --init --recursiveBuilding on Windows requires admin privileges.
$ deno task buildRunning
To run webview_deno without automatically downloading the binaries from
releases you will need to
use the environment variable PLUGIN_URL and set it to the path where the built
binaries are located. This is usually file://./target/release.
$ deno task build
$ PLUGIN_URL=./build/
$ deno run --unstable -A examples/local.tsor
$ deno task run examples/local.tsor if you have the webview library already built and didnโt make any changes to it, you can skip the building step with:
$ deno task run:fast examples/local.tsEnvironment variables
PLUGIN_URL- Set a custom library URL. Defaults to the latest release assets on Github. Setting this also disables cache forplug.
Dependencies
Other
Contribution
Pull request, issues and feedback are very welcome. Code style is formatted with
deno task fmt, linted with deno task lint and commit messages are done
following Conventional Commits
spec.
Licence
Copyright 2020-2022, the webview_deno team. All rights reserved. MIT license.