Skip to main content
Module

x/webview/examples/user_agent.ts

🌐 Deno bindings for webview, a tiny library for creating web-based desktop GUIs
Latest
File
import { Webview } from "../mod.ts";
const html = ` <html> <body> <script>document.body.innerHTML = window.navigator.userAgent; </script> </body> </html>`;
const webview = new Webview();
webview.navigate(`data:text/html,${encodeURIComponent(html)}`);webview.run();