
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
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 76 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.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.