Socket
Socket
Sign inDemoInstall

ipterate

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

4

package.json
{
"name": "ipterate",
"version": "1.0.0",
"description": " A small utility library to allow you to iterate through all IPs within a given subnet. Remain efficient no matter how many IPs there are in the range.",
"version": "1.0.1",
"description": " A small utility library to allow you to iterate through all IPs within a given subnet. Remains efficient no matter how many IPs there are in the range.",
"main": "index.js",

@@ -6,0 +6,0 @@ "scripts": {

@@ -7,6 +7,31 @@ # About

For instance the following code
const ipterate = require('ipterate');
ipterate.range('10.0.1.0/29').iterate(ip => {
console.log(`IP: ${ip}`);
});
prints out
10.0.1.0
10.0.1.1
10.0.1.2
10.0.1.3
10.0.1.4
10.0.1.5
10.0.1.6
10.0.1.7
and this one will traverse all IPs in existence:
const ipterate = require('ipterate');
ipterate.range('0.0.0.0/0').iterate(ip => {
console.log(`IP: ${ip}`);
});
});
# Installation
npm install --save ipterate
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc