Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/girkovarpa/beppe
- Owner: GirkovArpa
- License: other
- Created: 2022-08-02T05:21:44.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-08-02T05:30:00.000Z (over 2 years ago)
- Last Synced: 2025-01-16T09:14:24.799Z (1 day ago)
- Topics: automation, browser, chrome, lightweight, phantomjs, puppeteer, small, tiny
- Language: JavaScript
- Homepage:
- Size: 69.3 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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/
}
```