Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/caspervonb/deno-web
- Owner: caspervonb
- License: mit
- Created: 2020-08-21T20:06:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-10T00:44:20.000Z (over 3 years ago)
- Last Synced: 2024-11-28T13:48:55.038Z (about 1 month ago)
- Topics: hacktoberfest
- Language: TypeScript
- Homepage: https://deno.land/x/web
- Size: 19.5 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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",
});
```