get-ip-cn
v1.1.1
Published
get public ip from uc.cn
Readme
get-ip-cn
Get your public ip from https://uc.cn/ip
Install
With npm
npm install get-ip-cnWith yarn
yarn add get-ip-cnUsage
const getIp = require('get-ip-cn')
(async () => {
const ip = await getIp()
console.log('My IP is: ' + ip)
})()