npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ip-domain-filter

v1.0.0

Published

Filter and validates IP, IP Ranges and Domain

Downloads

4

Readme

ip-domain-filter

Validates IPs (IPv4 and IPv6) and domain names using micromatch ruleset. Can be used for IP/Domain whitelisting functionality.

Install

npm i ip-domain-filter --save

Usage

const hostFilter = require('ip-domain-filter');

let rules = [{
    category: 'ip',
    allowed: ['127.0.0.2', '127.0.0.4', '127.0.0.6']
  },
  {
    category: 'domain',
    allowed: ['localhost', 'google.com']
  },
  {
    category: 'ipRange',
    allowed: ['127.1.0.8', '127.1.0.20']
  },
  {
    category: 'ip',
    allowed: ['192.168.??.1']
  },
  {
    category: 'ip',
    allowed: ['192.168.1.*']
  }
];

let caseA = '192.168.10.1';
hostFilter.filter(caseA, rules);
// Returns true as it matches 4th rule.

let caseB = '192.168.2.1';
hostFilter.filter(caseB, rules);
// Returns false as it does'nt match any of the rules.

For more use-cases see the tests

Params

  • ip {String}: Accepts IP and Domain names.
  • rules {Array}: Filter rules/conditions.
  • returns {Bool}: If there is a match it returns true, otherwise false.

Rules

Rule will be an object array having 2 parameters category and allowed.

| Category | Description | | :------------ | :------------ | | ip | To check whether the given IP is valid in a list of IP's. | | ipRange | To check whether the given ip is in a range or not. | | domain | To check wheter the domain matches a given list of domains. |

Examples

(1) Rule using ip, This will check whether the given ip is available in the allowed list or not.

let rules = [{
    category: 'ip',
    allowed: ['127.0.0.2', '127.0.0.4', '127.0.0.6']
  }
]

(2) Rule using ipRange, This will check whether the given ip is between the specified range or not.

Note: In the case of ipRange, allowed should have only 2 values, [ipStart, ipEnd]

let rules = [{
    category: 'ipRange',
    allowed: ['127.1.0.8', '127.1.0.20']
  }
]

(3) Rule using domain, This will check whether the given domain is between the specified list or not.

let rules = [{
    category: 'domain',
    allowed: ['localhost', 'google.com']
  }
]

Extended Useage

(4) Rule using ip with micromatch, This will check whether the given ip is in the format 192.168.*.1. And the * can be any character.

let rules = [{
    category: 'ip',
    allowed: ['192.168.*.1']
  }
]

// 192.168.1.1 - true
// 192.168.10.1 - true
// 192.168.1.2 - false

(5) Rule using ip with micromatch, This will check whether the given ip is in the format 192.168.?.1. And the ? can be any character from 0 to 9.

let rules = [{
    category: 'ip',
    allowed: ['192.168.?.1']
  }
]

// 192.168.1.1 - true
// 192.168.9.1 - true
// 192.168.10.1 -  false