carol
carol copied to clipboard
Can I use microsoft edge to provide UI?
@kitepad This module internally uses Chrome DevTools Protocol. So it may work with Chromium-based Edge (but I haven't tested it yet).
import { launch } from "https://deno.land/x/[email protected]/mod.ts";
const pathToEdge = "...";
const app = await launch({
executablePath: pathToEdge,
title: "Hello carol app!",
width: 480,
height: 320
});
app.onExit().then(() => Deno.exit(0));
await app.load("data:text/html,<div>Hello, world!</div>");
https://github.com/zserge/lorca/issues/26