Skip to content

Instantly share code, notes, and snippets.

@rayyildiz
Last active December 14, 2020 20:07
Show Gist options
  • Save rayyildiz/bce237182a93dd2e91a991b8191a0678 to your computer and use it in GitHub Desktop.
Save rayyildiz/bce237182a93dd2e91a991b8191a0678 to your computer and use it in GitHub Desktop.
Deno webview test
import { Webview } from 'https://deno.land/x/webview@0.5.5/mod.ts';
const opts = {
width: 800,
height: 600,
resizable: true,
debug: true,
frameless: false,
};
const web = new Webview({
title: "rayyildiz.com",
url: `https://rayyildiz.com`,
...opts,
});
web.run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment