use-network-status

v0.9.4arrow_drop_down
v0.9.4
v0.9.3
STATUS
Passing
DOWNLOADS
9
VISIBILITY
Public
PUBLISHED
6 years ago
SIZE
880 B
1 contributor
Install use-network-status as a package?
Copied
npm i @bit/giladshoham.react-hooks.the-platform.use-network-status
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
chevron_left
chevron_right

useNetworkStatus()

Retrieve network status from the browser.

Returns

Object containing:

  • isOnline: boolean: true if the browser has network access. false otherwise.

  • offlineAt?: Date: Date when network connection was lost.

Example

import { useNetworkStatus } from 'the-platform';

const Example = () => {
  const { isOnline, offlineAt } = useNetworkStatus();

  // ...
};
Help and resources