mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
// examples/with-external-ip.js
|
|
// With External IP
|
|
'use strict';
|
|
|
|
var ips = require('../index')
|
|
ips(function(err, data) {
|
|
console.log(data) // ex: { local: '192.168.10.3', public: '70.22.12.182' }
|
|
})
|