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

insubnet

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

insubnet

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

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
96
decreased by-66.08%
Maintainers
1
Weekly downloads
 
Created
Source

inSubnet (v0.0.3)

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.

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

Functions:

Examples in `./examples/` folder.

inSubnet.Auto(ip, subnet[, mask]) - Check to find out if <ip> is in <subnet>. Works with IPv4 and IPv6. Returns true or false.
     Examples: inSubnet.Auto('1.2.3.4','1.2.0.0/16'); OR inSubnet.Auto('1.2.3.4','1.2.0.0','16');

inSubnet.IPv4(ip, subnet[, mask]) - Same as "Auto()" but for IPv4 only. - Returns true or false.
     Examples: inSubnet.IPv4('1.2.3.4','1.2.0.0/16'); OR inSubnet.IPv4('1.2.3.4','1.2.0.0','16');

inSubnet.IPv6(ip, subnet[, mask]) - Same as "Auto()" but for IPv6 only. - Returns true or false.
     Examples: inSubnet.IPv6('2400:cb00::123','2400:cb00::/32'); OR inSubnet.IPv6('2400:cb00::123','2400:cb00::','32');

inSubnet.isIP(string) - Check if <string> is an IP address. Works for IPv6 and IPv4. - Returns true or false.
     Examples: inSubnet.isIP("127.0.0.1"); OR inSubnet.isIP("afd::1");

inSubnet.isIPv4(string) - Same as "isIP()" but for IPv4 only. - Returns true or false.
     Example: inSubnet.isIPv4("127.0.0.1");

inSubnet.isIPv6(string) - Same as "isIP()" but for IPv6 only. - Returns true or false.
     Example: inSubnet.isIPv6("adf::1");

inSubnet.Expand(ipv6) - Expands an IPv6. - Returns IPv6 or false.
     Example: inSubnet.expand("afd::1");

inSubnet.Validate(ip) - Check against an array of subnets set by "setSubnet()". - Returns true or false.
     Example: inSubnet.Validate("192.168.1.3");

inSubnet.setSubnets(subnets) - Set a list of subnets for "Validate()". - Returns true or false.
     Example: inSubnet.setSubnets(["192.168.1.0/30","::1/32"]);

TODO:

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

Keywords

FAQs

Package last updated on 06 Nov 2013

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