1.0.2 • Published 5 years ago

react-native-public-ip v1.0.2

Weekly downloads
3,248
License
MIT
Repository
github
Last release
5 years ago

react-native-public-ip

Get public IP address in React Native

Using the ipify API

Install

$ npm install --save react-native-public-ip

Usage

import publicIP from 'react-native-public-ip';

publicIP()
  .then(ip => {
    console.log(ip);
    // '47.122.71.234'
  })
  .catch(error => {
    console.log(error);
    // 'Unable to get IP address.'
  });

API

publicIP()

Returns a Promise for the IP address.

License

MIT © Alex Hinson