Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cidr-tools

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cidr-tools

Tools to work with IPv4 and IPv6 CIDR network lists

  • 1.1.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
24K
increased by16.44%
Maintainers
1
Weekly downloads
 
Created
Source

cidr-tools

Tools to work with IPv4 and IPv6 CIDR network lists

With python3, node and npm available:

$ npm i --save cidr-tools

Example

const cidrTools = require('cidr-tools');

cidrTools.merge(['1.0.0.0/24', '1.0.1.0/24']).then(r => {
  console.log(r);
  //=> ['1.0.0.0/23']
});

cidrTools.exclude(['::1/127'], ['::1/128']).then(r => {
  console.log(r);
  //=> ['::/128']
});

API

cidrTools.merge(networks)

  • networks Array: A list of IPv4 and IPv6 networks.
  • Returns: A promise that resolves to an array of merged networks.

cidrTools.exclude(baseNetworks, excludeNetworks)

  • baseNetworks Array: A list of IPv4 and IPv6 networks.
  • excludeNetworks Array: A list of IPv4 and IPv6 networks to exclude from baseNetworks.
  • Returns: A promise that resolves to an array of merged remaining networks.

CLI

CLI is work in progress

© silverwind, distributed under BSD licence.

Keywords

FAQs

Package last updated on 08 Jun 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc