Skip to content

Commit

Permalink
Readme Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mdervisaygan committed Feb 25, 2024
1 parent 62f72a5 commit d47f011
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ sudo apt-get install xvfb
```js

const start = async () => {
var { puppeteerRealBrowser } = await import('puppeteer-real-browser')
const { page, browser } = await puppeteerRealBrowser({})
var { connect } = await import('puppeteer-real-browser')
const { page, browser } = await connect({})
}

```
### Module

```js

import {puppeteerRealBrowser} from 'puppeteer-real-browser'
import { connect } from 'puppeteer-real-browser'

const { page, browser } = await puppeteerRealBrowser({})
const { page, browser } = await connect({})

```

Expand Down Expand Up @@ -125,3 +125,13 @@ Distributed under the MIT License. See [LICENSE](https://github.com/zfcsoftware/
* **Jimmy Laurent** - [Jimmy Laurent](https://github.com/JimmyLaurent) - *inspired by cloudflare-scraper library*
* **CrispyyBaconx** - [CrispyyBaconx](https://github.com/CrispyyBaconx) - *Contributed to converting this library to Typescript*
* **Pavle Aleksic** - [pavlealeksic](https://github.com/pavlealeksic) - *We change the fingerprint with the puppeteer-afp library.*

## Disclaimer of Liability

No responsibility is accepted for the use of this software. This software is intended for educational and informational purposes only. Users should use this software at their own risk. The developer cannot be held liable for any damages that may result from the use of this software.

This software is not intended to bypass Cloudflare Captcha or any other security measure. It must not be used for malicious purposes. Malicious use may result in legal consequences.

This software is not officially endorsed or guaranteed. Users can visit the GitHub page to report bugs or contribute to the software, but they are not entitled to make any claims or request service fixes.

By using this software, you agree to this disclaimer.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppeteer-real-browser",
"version": "1.2.0",
"version": "1.2.1",
"description": "This package is designed to bypass puppeteer's bot-detecting captchas such as Cloudflare. It acts like a real browser and can be managed with puppeteer.",
"type": "module",
"exports": "./src/index.js",
Expand Down

0 comments on commit d47f011

Please sign in to comment.