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

insubnet

v0.0.8

Published

Check an IP(v4 or v6) against a subnet.

Downloads

1,546

Readme

inSubnet (v0.0.8)

Install: npm install insubnet

This project is Unlicensed. In other words, I don't care what you do with it. However, if you make something interesting, I would like to check it out. I'm also accepting pull requests.

Build Status

Browser example at http://louist.github.io/inSubnet/example.html.

IPv4 Address Notation Support:

  • [x] Dotted decimal (127.0.0.1)
  • [ ] Dotted hexadecimal (0xC0.0x00.0x02.0xEB)
  • [ ] Dotted octal (0301.0250.0002.0353)
  • [ ] Hexadecimal (0xC00002EB)
  • [x] Decimal (3221226219)
  • [ ] Octal (030000001353)

Functions:

Examples in `./examples/` folder.

inSubnet.Auto(ip, subnet[, prefix length]) - Check to find out if <ip> is in <subnet>. Works with IPv4 and IPv6. Returns boolean.

     Examples: inSubnet.Auto('1.2.3.4','1.2.0.0/16'); // true
               inSubnet.Auto('1.2.3.4','1.2.0.0','16'); // true
               inSubnet.Auto('16909060','1.2.0.0/16'); // true
               inSubnet.Auto('16909060','16908288/16'); // true
               inSubnet.Auto('2400:cb00::123','2400:cb00::/32'); // true
               inSubnet.Auto('1.4.3.4','1.2.0.0','16'); // false

inSubnet.IPv4(ip, subnet[, prefix length]) - Same as "Auto()" but for IPv4 only. - Returns boolean.

     Examples: See "Auto()" examples.

inSubnet.IPv4Dec(decimal, subnet[, prefix length]) - Same as "Auto()" but for IPv4 only. - Returns boolean.

     Examples: See "Auto()" examples.


inSubnet.IPv6(ip, subnet[, prefix length]) - Same as "Auto()" but for IPv6 only. - Returns boolean.

     Examples: inSubnet.IPv6('2400:cb00::123','2400:cb00::/32'); // true
               inSubnet.IPv6('2400:cb00::123','2400:cb00::','32'); // true
               inSubnet.IPv6('2500:cb00::123','2400:cb00::','32'); // false

inSubnet.isIP(string) - Check if <string> is an IP address. Works for IPv6 and IPv4. - Returns boolean.

     Examples: inSubnet.isIP("127.0.0.1"); // true
               inSubnet.isIP("afd::1"); // true
               inSubnet.isIP("asd::1"); // false

inSubnet.isIPv4(string) - Same as "isIP()" but for IPv4 only. - Returns boolean.
     Examples: inSubnet.isIPv4("127.0.0.1"); // true
               inSubnet.isIPv4("127.0.0.256"); // false

inSubnet.isDecimal(string) - Same as "isIP()" but for IPv4 decimal notation only. - Returns boolean.
     Examples: inSubnet.isDecimal("16909060"); // true
               inSubnet.isDecimal("a16909060"); // false

inSubnet.isIPv6(string) - Same as "isIP()" but for IPv6 only. - Returns boolean.

     Examples: inSubnet.isIPv6("adf::1"); // true
               inSubnet.isIPv6("asf::1"); // false

inSubnet.Expand(ipv6[, zero]) - Expands an IPv6.
                                If <zero> is true, use single zeros. - Returns IPv6 or false.

     Examples: inSubnet.Expand("afd::1"); // 0afd:0000:0000:0000:0000:0000:0000:0001
               inSubnet.Expand("2001:4860:4860::8888"); // 2001:4860:4860:0000:0000:0000:0000:8888
               inSubnet.Expand("afd::1",true); // afd:0:0:0:0:0:0:1
               inSubnet.Expand("asd::1"); // false

inSubnet.Validate(ip[, subnets[, no update]]) - Check <ip> or an Array of IPs against an array of subnets set by "setSubnets()".
                                   If <subnets> is passed, uses "setSubnets()". If <no update> is true, do not call "setSubnets()".
                                   Returns boolean or an Array of boolean.

     Examples: inSubnet.Validate('127.0.0.1',['127.0.0.1/32','adf::1/32']);  // true
               inSubnet.Validate('2130706433'); // true - Uses previously set subnets.
               inSubnet.Validate(['127.0.0.1','127.0.0.2','adf::1']); // [true,false,true] - Uses previously set subnets.
               inSubnet.Validate(['127.0.0.1','127.0.0.2','adf::1'],['127.0.0.1/32']); // [true,false,false] - Overwrite previously set subnets.

*inSubnet.Filter(array[, subnets[, no update]]) - Filter an Array of IP addresses against subnets set with "setSubnets()".
                                    If <subnets> is passed, uses "setSubnets()". If <no update> is true, do not call "setSubnets()".
                                    Returns IP or false, Array of valid IPs.

     Examples: inSubnet.Filter(['127.0.0.1','adf::1','127.0.0.2'],['127.0.0.1/32','adf::1/32']); // ['127.0.0.1','adf::1']
               inSubnet.Filter('127.0.0.1',['127.0.0.1/32','adf::1/32']); // 127.0.0.1
               inSubnet.Filter('adf::1',['127.0.0.1/32'],true); // true - Uses previously set subnets.
               inSubnet.Filter('adf::1',['127.0.0.1/32']); // false - Overwrite previously set subnets.
               inSubnet.Filter('127.0.0.2',['127.0.0.1/32','adf::1/32']); // false

*inSubnet.Clean(array[, filter[, sort]]) - Filter an array of IPs/subnets and return only valid IPs. Used in "setSubnets()".
                                          <filter> is the function to pass to "Array.filter()".
                                          <sort> is the function to pass to "Array.sort()" - Returns Object or false.
                                          NOTE: "Array.filter()" and "Array.sort()" are ran LAST after validating and expanding.

     Examples: inSubnet.Clean(['127.0.0.2','127.0.0.29/32']); // {ipv4:['127.0.0.2','127.0.0.29/32'],ipv6:[]}
               inSubnet.Clean(['127.0.0.1','adf::1']); // {ipv4:['127.0.0.1'],ipv6:['0adf:0000:0000:0000:0000:0000:0000:0001']}
               inSubnet.Clean(['adf::1','::1']); // {ipv4:[],ipv6:['0000:0000:0000:0000:0000:0000:0000:0001','0adf:0000:0000:0000:0000:0000:0000:0001']}
               inSubnet.Clean(['not an IP','subnet/23','asd::1']); // false

*inSubnet.setSubnets(subnets) - Set a list of subnets for "Validate()" and "Filter()".
                               WARNING: Overrides all previous "setSubnets()" calls. - Returns boolean.

     Examples: inSubnet.setSubnets(["192.168.1.0/30","::1/32"]); // true
               inSubnet.setSubnets(["not","subnets","subnet/32"]); // false

*Only supports IPv4 dotted decimal notation and IPv6.

TODO:

  • [x] Figure out what should be in the TODO and then write it! (Done!?)
  • [ ] Write a better README! (Is this happening?)
  • [x] Write a simple HTTP example for CloudFlare. (Look in ./examples/cloudflare.js)
  • [ ] Make "Exporter" better.

Functionality Requests:

  • [ ] *Add support for IPv6 dotted notation. (::127.0.0.1)

  • [ ] Add support for more IPv4 notations. See "IPv4 Address Notation Support" above.

    *I probably wont get to this any time soon... Sorry for those who need/want it. Please feel free to submit a pull request.