Skip to content
Advertisement

What’s the most performant way to do simple IP address comparisons?

I’m working in node.js, and I want to do something like the following pseudocode…

JavaScript

Any ideas on the fastest way to do this?

I’ve already checked out cidr-js, and it provides functionality for CIDR conversions but not IP address comparisons. Seems like node-ip could be a good choice.

Thanks!

Advertisement

Answer

IP addresses as we know them are simply string representations of 32bit numeric values.

By converting the string representation back into its numeric value, it becomes trivially easy to check membership within a range of addresses using native numeric comparisons, as in the following code:

JavaScript

See fiddle.

Here is the same thing, fully commented and properly error-checked:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement