1.0.9 • Published 9 months ago

react-offline-detector v1.0.9

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

react-offline-detector

npm version

react-offline-detector is a simple and efficient React hook that helps you detect the user's online/offline status. This hook provides a boolean value that represents whether the user is offline or online, allowing you to build responsive apps that adapt to network changes.


Output Example (detect offline/online status)

Exam1 Exam1 Exam1 Exam1

Features

  • Detects online/offline status in real-time.
  • Easy-to-use React hook (useOfflineDetector).
  • Works seamlessly in any React + TypeScript project.
  • Fully customizable UI for displaying offline status.
  • Lightweight and without any dependencies.

Installation

To install the react-offline-detector package, run the following command in your React project:

npm install react-offline-detector

Or with Yarn:

yarn add react-offline-detector

Usage

1. Basic Setup

Once the library is installed, you can easily use the useOfflineDetector hook to get the user's current network status. This hook returns a boolean (true for offline, false for online), which you can use to display status messages or modify the UI based on the connection state.

const MyComponent: React.FC = () => {
  const isOffline = useOfflineDetector(); // Get the offline status

  return (
    <div>
      {isOffline ? (
        <p>You are currently offline. Please check your internet connection.</p>
      ) : (
        <p>You are online!</p>
      )}
    </div>
  );
};

export default MyComponent;

2. API Reference

useOfflineDetector Returns a boolean value :

  • true: if the user is offline.
  • false: if the user is online.

Contributing

If you'd like to contribute to the project, feel free to fork the repository and submit pull requests. Contributions such as bug fixes, features, or improvements are always welcome.

1.0.9

9 months ago

1.0.8

9 months ago

1.0.7

9 months ago

1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago