Skip to main content
Home

Built and signed on GitHub Actions

Works with
This package works with Deno
This package works with Deno
JSR Score100%
Downloads4/wk
Publisheda year ago (0.9.0)

🌐 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

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();
Built and signed on
GitHub Actions

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@webview/webview

Import symbol

import * as webview from "@webview/webview";
or

Import directly with a jsr specifier

import * as webview from "jsr:@webview/webview";