There is a ReactNative library for getting information about a network of devices:
react-native-network-info
// require module var NetworkInfo = require('react-native-network-info'); // Get Local IP NetworkInfo.getIPAddress(ip => { console.log(ip); });
Chris source share