@custom_react_hook/use-network

1.0.0 • Public • Published

@custom_react_hook/use-network

React Hook to listen when the user goes online or offline.

Installation

yarn

yarn add @custom_react_hook/use-network

npm

npm i @custom_react_hook/use-network

Usage

import React from "react";
import useNetwork from "@custom_react_hook/use-network";
function App() {
  const onNetworkChange = isOnline =>
    console.log(isOnline ? "We are back online" : "We just got offline");
  const isOnline = useNetwork(onNetworkChange);
  return <h1>{isOnline ? "We are online" : "We are offline"}</h1>;
}

Arguments

Argument Type Description Arguments Required
onNetworkChange function Function to be called when the network status changes isOnline : Boolean no

Return

Return value Type Description Default value
isOnline Boolean A boolean representing if the user is online or not true

Readme

Keywords

Package Sidebar

Install

npm i @custom_react_hook/use-network

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

2.59 kB

Total Files

4

Last publish

Collaborators

  • bluebug9965