
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Node module for for expanding cidr blocks in a list of IP (a-z) or just the range (start & end)
npm install cidr-js
Get just the start and end IPs
var CIDR = require('cidr-js');
var cidr = new CIDR();
var block = '127.0.0.0/31';
var results = cidr.range(block);
// should return ['127.0.0.0', '127.0.0.1']
Get a list of ips in a given range
var CIDR = require('cidr-js');
var cidr = new CIDR();
var block = '127.0.0.0/30';
var results = cidr.list(block);
// should return [ '127.0.0.0', '127.0.0.1', '127.0.0.2', '127.0.0.3' ]
Filter a list of ips into contiguous blocks
var ips = [
// contiguous block
'127.0.0.0',
'127.0.0.1',
'127.0.0.2',
'127.0.0.3',
'127.0.0.4',
'127.0.0.5',
'127.0.0.6',
// new contiguous block
'127.0.1.1',
'127.0.1.2',
'127.0.1.3',
// dangling block
'127.0.1.5'
];
var CIDR = require('cidr-js');
var cidr = new CIDR();
var results = cidr.filter(ips);
// should return
{
'12700': [
'127.0.0.1',
'127.0.0.2',
'127.0.0.3',
'127.0.0.4',
'127.0.0.5',
'127.0.0.6'
],
'12701': [
'127.0.1.1',
'127.0.1.2',
'127.0.1.3'
],
'127015': [
'127.0.1.5'
]
}
Get IP blocks from a list of IPs
var ips = [
// contiguous block
'127.0.0.0',
'127.0.0.1',
'127.0.0.2',
'127.0.0.3',
'127.0.0.4',
'127.0.0.5',
'127.0.0.6',
// new contiguous block
'127.0.1.1',
'127.0.1.2',
'127.0.1.3',
// dangling block
'127.0.1.5'
];
var CIDR = require('cidr-js');
var cidr = new CIDR();
var results = cidr.getBlocks(ips);
// should return
[
'127.0.0.0/30',
'127.0.0.4/31',
'127.0.0.6/32',
'127.0.1.1/32',
'127.0.1.2/31',
'127.0.1.5'
]
npm test
FAQs
Utility for expanding cidr blocks in a list of IPs
The npm package cidr-js receives a total of 64 weekly downloads. As such, cidr-js popularity was classified as not popular.
We found that cidr-js 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.