Open
Description
Could you provide some more samples?
- How to bind async functions? This do not work at my end:
webview.bind("press", async (a, b, c) => {
console.log(a, b, c);
const message_from_file = await Deno.readTextFile("test.txt");
console.log(message_from_file)
return { times: counter++, file:message_from_file };
});
- How to compile application that does not show console window on windows?
using --no-terminal does not work for me. app exits right away