We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The command I was running: deno run --allow-all webview.ts
deno run --allow-all webview.ts
One of the multiple errors that I encountered: Gtk-Message: 23:01:29.666: Failed to load module "xapp-gtk3-module"
Gtk-Message: 23:01:29.666: Failed to load module "xapp-gtk3-module"
This is the simple file that I was running
// webview.ts import * as Webview from "jsr:@webview/webview@^0.8.1"; const html = ` <html> <body> <h1>Hello from deno v</h1> </body> </html> `; const webview = new Webview.Webview(); webview.navigate(`data:text/html,${encodeURIComponent(html)}`); webview.run();
-A
-Ar
--unstable-ffi
--i
deno run --allow-all https://deno.land/x/webview/examples/local.ts
import * as Webview from "jsr:@webview/webview@^0.8.1";
I think the demonstration failed because it is predetermined to the latest version
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The command I was running:
deno run --allow-all webview.ts
One of the multiple errors that I encountered:
Gtk-Message: 23:01:29.666: Failed to load module "xapp-gtk3-module"
This is the simple file that I was running
❌ What I've tried and didn't work:
-A
-Ar
--unstable-ffi
--i
deno run --allow-all https://deno.land/x/webview/examples/local.ts
✅ Solved by changing the import to:
import * as Webview from "jsr:@webview/webview@^0.8.1";
I think the demonstration failed because it is predetermined to the latest version
The text was updated successfully, but these errors were encountered: