Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

getipify

vaibhavmuchandi83ISC1.0.2

Package to query your public ipv4 and ipv6 address

ip, publicip, ipv4, ipv6, getip, internet-protocol

readme

getipify

Get your public IP addresses. Uses Ipify service.

Install

npm install getipify

Usage

Import the functions ipv4() and ipv6()

import { ipv4, ipv6 } from "getipify"

Getting the public IP addresses.

    console.log(await ipv4())
    console.log(await ipv6())

OR

    ipv4()
        .then(ipv4 => console.log(ipv4))
        .catch(e => console.log(e))
    ipv6()
        .then(ipv6 => console.log(ipv6))
        .catch(e => console.log(e))

Contribute

Feel free to join in. All welcome. Open an issue!