Skip to content

dflupu/node-inet-ipv4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

inet_ipv4

====

Install with:

$ npm install inet_ipv4

Usage:

var inet_ipv4 = require('inet_ipv4');

inet_ipv4.aton('192.168.0.1')
// 3232235521

inet_ipv4.ntoa(3232235521)
// '192.168.0.1'

inet_ipv4.normalize('255.255.0x0001')
inet_ipv4.normalize('0xff000001')
inet_ipv4.normalize('037700000001')
// '255.255.0.1'

inet_ipv4.isValid('255.255.255.255')
// true

API Documentation

aton(str) -> int

http://linux.die.net/man/3/inet_aton Returns null if the parameter is invalid.

ntoa(int) -> str

http://linux.die.net/man/3/inet_ntoa Returns null if the parameter is invalid.

normalize(str) -> str

Converts the ip given as a parameter to a 4 part string format. Returns null if the parameter is invalid.

isValid(str) -> bool

Uses a regex to check if the parameter is a 4 part ip representation.

Tests

$ npm test

About

Converts IPv4 addresses to and from binary form

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published