mmalecki / ipint

Convert IP addresses to integers and vice versa

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ipint

Convert IP addresses to integers and vice versa.

Usage

var ipint = require('ipint');

var ip = '174.36.207.186',
    int = ipint.ipToInt('174.36.207.186');

console.log(ip + ' => ' + int);

console.log(int + ' => ' + ipint.intToIp(int));

About

Convert IP addresses to integers and vice versa

License:MIT License


Languages

Language:JavaScript 100.0%