Skip to main content
Module

x/webview/scripts/dev.ts

🌐 Deno bindings for webview, a tiny library for creating web-based desktop GUIs
Go to Latest
File
import { build } from "./build.ts";import { run } from "./run.ts";
export async function dev( file: string = Deno.args[0], mshtml: boolean = Deno.args.includes("mshtml"),) { await build(mshtml); await run(file);}
if (import.meta.main) { await dev();}