Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/caspervonb/deno-web

Cobwebs everywhere
https://github.com/caspervonb/deno-web

hacktoberfest

Last synced: about 1 month ago
JSON representation

Cobwebs everywhere

Awesome Lists containing this project

README

        

# Web - Launch web browsers

The `web` module lets you spawn web browsers from the deno runtime with ease.

## Example

```ts
import { launch } from "./browser/mod.ts";

const process = await launch({
url: "https://google.com",
browser: "chrome",
});
```