reachability

A package for web/mobile apps to determine a device's connection to the internet


Keywords
reachability, network, online, network connection, network connection strength
License
MIT
Install
npm install reachability@1.1.2

Documentation

reachability

A package for ionic based apps to determine a device's connection to the internet

Installation

Install reachability from npm:

npm install reachability --save

Usage

import { check } from 'reachability';

check().then((online: boolean) => {
	console.log("Online", online);
});