import{WebUI}from"https://deno.land/x/webui@2.5.3/mod.ts";constmyWindow=newWebUI();myWindow.show(' Hello World! ');awaitWebUI.wait(); deno run --allow-read --allow-write --allow-run --allow-net --allow-ffi minimal.ts More examples Online Documentation CppCon 2019 Presentation...
webui.deleteAllProfiles webui.free webui.malloc webui.encode webui.decode webui.setTimeout Fix
Using WebUI v2.4.1 Removing all external modules (a29dfb0) Make module compatible with deno compile (a29dfb0) Updating readme (simpler) Auto download WebUI v2.4.1 library if not exist at runtime (f42d977) Fix wait() (memory leak) (bdbd00e) Remove set_multi_access (0246f97)...
Use any web browser as GUI, with Deno in the backend and HTML5 in the frontend. - Release Deno-WebUI v2.4.2 · webui-dev/deno-webui
webui-dev/deno-webuiPublic NotificationsYou must be signed in to change notification settings Fork12 Star217 Releases 2.4.3 Compare hassandragareleased this28 Nov 20:33 ·14 commitsto main since this release 2.4.3 f6c3b3d Merge pull request #30 from AlbertShown/main Fix Linux (No such fil...
This [hello world example](https://github.com/webui-dev/deno-webui/tree/main/examples/hello_world) is written in Deno using WebUI as the GUI library. ![ScreenShot](img/webui_deno_example.png) @@ -49,39 +49,19 @@ is written in Deno using WebUI as the GUI library. import { We...
Use any web browser as GUI, with Deno in the backend and HTML5 in the frontend. - Issues · webui-dev/deno-webui
# WebUI Deno v2.4.0 [![Website](https://img.shields.io/circleci/project/github/badges/shields/master?style=for-the-badge)](https://github.com/webui-dev/deno-webui) [![Website](https://img.shields.io/github/issues/webui-dev/deno-webui.svg?branch=master&style=for-the-badge&url...
:: Download WebUI library for all supported OS. echo WebUI Deno Bootstrap echo. :: Creating the temporary cache folder mkdir "cache" 2>nul 1>nul :: Nightly Build SET "LINUX_ARM=https://github.com/webui-dev/webui/releases/download/nightly/webui-linux-gcc-arm.zip" SET "LINUX_ARM64=...
import * as embedder from "./deno-embedder/mod.ts" const options = { importMeta: import.meta, mappings: [ { sourceDir: "./webui/dist", destDir: "embed/webui", } ] } if (import.meta.main) { await embedder.main({ options }) ...