Network Interface
Network interface information plugin for Cordova/PhoneGap that supports Android, Blackberry 10, Browser, iOS, and Windows Phone 8.
https://github.com/salbahra/cordova-plugin-networkinterface
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-networkinterface $ npm install @ionic-native/network-interface $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-networkinterface $ npm install @ionic-native/network-interface
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- BlackBerry 10
- Browser
- iOS
- Windows
- Windows Phone
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { NetworkInterface } from '@ionic-native/network-interface/ngx';
constructor( private networkInterface: NetworkInterface ) {
this.networkInterface.getWiFiIPAddress() .then(address => console.info(`IP: ${address.ip}, Subnet: ${address.subnet}`)) .catch(error => console.error(`Unable to get IP: ${error}`));
this.networkInterface.getCarrierIPAddress() .then(address => console.info(`IP: ${address.ip}, Subnet: ${address.subnet}`)) .catch(error => console.error(`Unable to get IP: ${error}`));
const url = 'www.github.com'; this.networkInterface.getHttpProxyInformation(url) .then(proxy => console.info(`Type: ${proxy.type}, Host: ${proxy.host}, Port: ${proxy.port}`)) .catch(error => console.error(`Unable to get proxy info: ${error}`));}