NPMクック:ip、IPアドレス処理


NPMクックは、一日二分間で人気のNPMライブラリを知ることができます.
今日はIPアドレスを処理するためのライブラリを調べます.ip、ipライブラリは、本機のIPアドレス、比較、変換、マスク/サブネット計算などの様々なネットワークIP関連の操作を取得できます.
const ip = require('ip');

//       IP
ip.address();

//     IP    
ip.isEqual('::1', '::0:1'); // true 

// IP       
ip.toBuffer('127.0.0.1') // Buffer([127, 0, 0, 1]) 
ip.toString(new Buffer([127, 0, 0, 1])) // 127.0.0.1 
ip.toLong('127.0.0.1'); // 2130706433 
ip.fromLong(2130706433); // '127.0.0.1' 

//        IP
ip.isPrivate('127.0.0.1') // true 

//   IP  
ip.isV4Format('127.0.0.1'); // true 
ip.isV6Format('::ffff:127.0.0.1'); // true 

//     
ip.fromPrefixLen(24) // 255.255.255.0 
ip.mask('192.168.1.134', '255.255.255.0') // 192.168.1.0 
ip.cidr('192.168.1.134/26') // 192.168.1.128 
ip.not('255.255.255.0') // 0.0.0.255 
ip.or('192.168.1.134', '0.0.0.255') // 192.168.1.255 

//     
ip.subnet('192.168.1.134', '255.255.255.192');
// { networkAddress: '192.168.1.128', 
//   firstAddress: '192.168.1.129', 
//   lastAddress: '192.168.1.190', 
//   broadcastAddress: '192.168.1.191', 
//   subnetMask: '255.255.255.192', 
//   subnetMaskLength: 26, 
//   numHosts: 62, 
//   length: 64, 
//   contains: function(addr){...} } 

//       
ip.cidrSubnet('192.168.1.134/26').contains('192.168.1.190') // true 
参考資料
https://github.com/indutny/no...