Skip to main content
Module

x/webview/examples/local.ts

🌐 Deno bindings for webview, a tiny library for creating web-based desktop GUIs
Go to Latest
File
import { WebView } from "../mod.ts";
new WebView({ title: "Local deno_webview example", url: `data:text/html, <html> <body> <h1>Hello from deno</h1> </body> </html> `, width: 800, height: 600, resizable: true, debug: true, frameless: false}).run();