Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
latest
webview/webview_deno🌐 Deno bindings for webview, a tiny library for creating web-based desktop GUIs
Webview is a tiny cross-platform library to make web-based GUIs for desktop applications.
Examples
Example 1
Example 1
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();