Gathering detailed insights and metrics for bfn-proxy
Gathering detailed insights and metrics for bfn-proxy
npm install bfn-proxy
Typescript
Module System
Min. Node Version
Node Version
NPM Version
69.3
Supply Chain
92.7
Quality
76
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
31,205
Last Day
1
Last Week
3
Last Month
36
Last Year
833
MIT License
8 Stars
44 Commits
2 Forks
3 Watchers
1 Branches
4 Contributors
Updated on Aug 26, 2023
Minified
Minified + Gzipped
Latest Version
2.1.0
Package Id
bfn-proxy@2.1.0
Unpacked Size
12.49 kB
Size
4.93 kB
File Count
14
NPM Version
8.5.0
Node Version
16.14.2
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-50%
3
Compared to previous week
Last Month
-71%
36
Compared to previous month
Last Year
-57.3%
833
Compared to previous year
HTTP request proxy middleware for node.js
Designed to be the simplest way possible to proxy http calls.
$ npm install --save bfn-proxy
Simple app. If created on heroku, go to https://applicationname.herokuapp.com/twitter.com/
1require('http') 2 .createServer(require('bfn-proxy')()) 3 .listen(process.env.PORT || 8080)
Simple app using middleware, i.e. http://servername.com/ipecho.net/plain
1var express = require('express') 2var pxy = require('bfn-proxy')() 3 4var app = express() 5 6app.use(pxy)
Only allow access from your local server with URI prefix '/pxy', i.e. http://127.0.0.1/pxy/www.bluefidelity.com/
1var express = require('express') 2var pxy = require('bfn-proxy')() 3 4var app = express() 5 6app.use('/pxy/', function (req, res, next) { 7 if (req.connection.remoteAddress !== '127.0.0.1') { 8 return next(new Error('Bad authentication data')) 9 } 10 pxy(req, res) 11})
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/30 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
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-02-24
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