webview_deno icon indicating copy to clipboard operation
webview_deno copied to clipboard

🌐 Deno bindings for webview, a tiny library for creating web-based desktop GUIs

Results 31 webview_deno issues
Sort by recently updated
recently updated
newest added

What is the best way to communicate between 2 or more webviews? (ex, click button in one, changes color in another)

enhancement
future

My use case is the following, I wanna open a prompt to select a file (perhaps a input[file] ?) and select a file from my system, and I need to...

wontfix
future

Local images are not rendered - neither using absolute or relative paths `` Or am I doing something wrong?

wontfix

I'm moving from svelte/electron to webview_deno and the example is pretty minimal for me to get a good understanding of how to organize and complex desktop application.

documentation

Tried to run the demo from the readme either locally or from remote but run straight into this error: ``` error: Uncaught (in promise) TypeError: Error parsing args at position...

Is possible to intercept any http request launched by the webview? if yes it will be easy to convert any SPA in real desktop with full access to the os...

# Changes 1. `ffi.ts`: fixed the second parameter of "webview_set_html" symbol to "buffer" from "pointer". 2. `webview.ts`: added `html` setter that basically wraps `webview_set_html` symbol. 3. Replaced all the examples...

error: Uncaught (in worker "") (in promise) Error: The process cannot access the file because the file is occupied by another process.(os error 32): copy 'D:\DEV\JS\deno_web_view\webview_deno_with_git\webview_deno\build\webview.dll' -> 'C:\Users\Gigabyte\AppData\Local\deno\plug\file\014de450d669a096973f811063b1ed5d605d2181478cd9b209858974efd08c6c.dll' await Deno.copyFile(fromFileUrl(url),...

deno task build - error: stderr: A subdirectory or file D:\DEV\JS\deno_web_view\webview_deno-main\script\..\build already exists. If i remove line of make /build directory from build.bat file, error is not apear but compilled...

Consider this minimal example: ```typescript import { Webview } from "https://deno.land/x/[email protected]/mod.ts"; const html = ` Hello from deno v${Deno.version.deno} `; const webview = new Webview(); webview.navigate(`data:text/html,${encodeURIComponent(html)}`); webview.run(); ``` Run the...