Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/girkovarpa/beppe

tiny alternative to puppeteer
https://github.com/girkovarpa/beppe

automation browser chrome lightweight phantomjs puppeteer small tiny

Last synced: about 15 hours ago
JSON representation

tiny alternative to puppeteer

Awesome Lists containing this project

README

        



Beppe Logo



Beppe


tiny alternative to puppeteer

## Installation

```
npm i beppe
```

## Usage

```javascript
import Beppe from 'beppe';

main();

async function main() {
const beppe = await new Beppe('https://example.com').connect();
await beppe.execFunc(() => alert('Hello World!'));
await beppe.goto('https://google.com/');
const location = await beppe.eval('window.location.href');
console.log(location); // https://google.com/
}
```