deno-web icon indicating copy to clipboard operation
deno-web copied to clipboard

Cobwebs everywhere

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",
});