Gathering detailed insights and metrics for puppeteer-extra-plugin-proxy
Gathering detailed insights and metrics for puppeteer-extra-plugin-proxy
Gathering detailed insights and metrics for puppeteer-extra-plugin-proxy
Gathering detailed insights and metrics for puppeteer-extra-plugin-proxy
npm install puppeteer-extra-plugin-proxy
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
18 Stars
5 Commits
1 Forks
5 Branches
1 Contributors
Updated on 28 Nov 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
45%
883
Compared to previous day
Last week
20.6%
4,391
Compared to previous week
Last month
61.9%
12,906
Compared to previous month
Last year
186.3%
126,947
Compared to previous year
1
3
A plugin for puppeteer-extra to add proxy support
1yarn add puppeteer-extra-plugin-proxy 2# - or - 3npm install puppeteer-extra-plugin-proxy
If this is your first puppeteer-extra plugin here's everything you need:
1yarn add puppeteer puppeteer-extra puppeteer-extra-plugin-proxy 2# - or - 3npm install puppeteer puppeteer-extra puppeteer-extra-plugin-proxy
1// puppeteer-extra is a drop-in replacement for puppeteer, 2// it augments the installed puppeteer with plugin functionality 3const puppeteer = require('puppeteer-extra'); 4// require proxy plugin 5const pluginProxy = require('puppeteer-extra-plugin-proxy'); 6// add proxy plugin without proxy crendentials 7puppeteer.use(pluginProxy({ 8 address: '123.123.123.123', 9 port: 1001 10})); 11// or you can specify a proxy with crendentials like so 12// puppeteer.use(pluginProxy({ 13// address: '123.123.123.123', 14// port: 1001, 15// credentials: { 16// username: 'user1', 17// password: '123456', 18// } 19// })); 20 21// puppeteer usage as normal 22puppeteer.launch({ headless: true }).then(async browser => { 23 const page = await browser.newPage() 24 await page.setViewport({ width: 800, height: 600 }) 25 // will go through the specified proxy 26 await page.goto("https://example.com") 27 await page.waitFor(5000) 28 await page.screenshot({ path: "testresult.png", fullPage: true }) 29 await browser.close() 30})
For more info see the tests.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/5 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
13 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More