Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
connect-access
Advanced tools
Access controls (ACLs) by location as a Connect middleware. Inspired by nginx's http_access_module.
$ npm install connect-access
access(String path, Array rules)
var access = require('connect-access');
var rules = [
'192.168.1.1', // Allow 192.168.1.1
'10.0.0.0/8', // Allow entire 10.0.0.0/8 range
'127.0.0.1', // Allow localhost
'-all', // block everyone else
];
var app = connect()
.use(access('/private/*', rules)) // Lock down all of /private/* to the ACLs we declared
.use(function(req, res, next) {
res.end('Hello world');
});
There are 2 ways to declare a list of acls.
To allow or disallow, the ip rule is prefixed with a +
or -
. If no qualifier is specified, it's assumed to allow
.
Rules are executed first to last and ends when the first rule is matched. If no match is found, assumes allow everything.
'all' // Allow everything
'127.0.0.1' // Allow just 127.0.0.1
'10.0.0.0/8' // Allow a CIDR range
'-127.0.0.1' // Disallow 127.0.0.1
'-10.0.0.0/8' // Disallow a CIDR range
'-all' // Disallow everything
FAQs
Access controls (ACLs) by location as a Connect middleware
We found that connect-access demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.