W3cubDocs

/DOM

Network Information API

This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The Network Information API provides information about the system's connection in terms of general connection type (e.g., 'wifi', 'cellular', etc.). This can be used to select high definition content or low definition content based on the user's connection. The entire API consists of the addition of the NetworkInformation interface and a single property to the Navigator interface: Navigator.connection.

Note: This feature is available in Web Workers.

Examples

Detect connection changes

This example watches for changes to the user's connection.

var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection;
var type = connection.type;

function updateConnectionStatus() {
  console.log("Connection type changed from " + type + " to " + connection.type);
}

connection.addEventListener('change', updateConnectionStatus);

Preload large resources

The connection object is useful for deciding whether to preload resources that take large amounts of bandwidth or memory. This example would be called soon after page load to check for a connection type where preloading a video may not be desirable. If a cellular connection is found, then the preloadVideo flag is set to false. For simplicity and clarity, this example only tests for one connection type. A real-world use case would likely use a switch statement or some other method to check all of the possible values of NetworkInformation.type. Regardless of the type value you can get an estimate of connection speed through the NetworkInformation.effectiveType property.

let preloadVideo = true;
var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection;
if (connection) {
  if (connection.type === 'cellular') {
    preloadVideo = false;
  }
}

Interfaces

NetworkInformation
Provides information about the connection a device is using to communicate with the network and provides a means for scripts to be notified if the connection type changes. The NetworkInformation interfaces cannot be instantiated. It is instead accessed through the Navigator interface.

Specifications

Browser compatibilityUpdate compatibility data on GitHubUpdate compatibility data on GitHub

NetworkInformation

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 61 No No No 48 No
Available in workers 61 No No ? 48 ?
downlink 61 No No ? 48 ?
downlinkMax 61 No No No 48 No
effectiveType 61 No No No 48 No
onchange 61 No No No 48 No
rtt 61 No No No 48 No
type 61 No No No 48 No
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 50 38 ? 31 37 No ?
Available in workers 50 38 ? 53 37 ? ?
downlink 50 38 ? ? 37 ? ?
downlinkMax 50 38 ? No 37 No ?
effectiveType 50 38 ? Yes 37 ? ?
onchange 50 38 ? No
No
On Firefox, the event handler property corresponding to the change event is ontypechange.
37 No ?
rtt 50 38 ? No 37 No ?
type 50 38 ? No 37 No ?
Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 61 ? ? No ? No
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 50 38 ? 14
14
The Network API is enabled by default. Can be disabled using the dom.netinfo.enabled preference.
37 No ?

See also

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Network_Information_API