Web - Launch web browsers
The web
module lets you spawn web browsers from the deno runtime with ease.
Example
import { launch } from "./browser/mod.ts";
const process = await launch({
url: "https://google.com",
browser: "chrome",
});
The web
module lets you spawn web browsers from the deno runtime with ease.
import { launch } from "./browser/mod.ts";
const process = await launch({
url: "https://google.com",
browser: "chrome",
});