whois-stats
基本原理
所有区域互联网注册管理机构 (RIR) 都会发布描述其管理的网络资源状态的统计数据。 这些统计数据每天更新。 whois-stats 允许您以 JSON 对象流的形式访问这些统计信息。
用法
var stats = require ( 'whois-stats' ) ;
stats . statsFromFTP ( stats . APNIC_LATEST , function ( err , stream ) {
if ( err ) throw err ;
stream . on ( 'entry' , function ( entry ) {
// entry is something like:
// {"registry":"apnic","cc":"JP","type":"ipv4","star
1