react-check-internet-connection
v1.0.1
Published
A simple npm library that provides a component to check internet connection and display a message accordingly.
Downloads
2
Readme
check-internet-connection
A simple npm library that provides a component to check internet connection and display a message accordingly.
Installation
You can install the library using npm:
npm install check-internet-connection
The InternetConnection
component will automatically check the internet connection and display a message if there is no connection.
FAQ
Q: How does the library check the internet connection?
A: The library relies on the window.navigator.onLine
property to check the internet connection status. It listens for the online
and offline
events and updates the component accordingly.
Q: Can I customize the message when there is no internet connection?
A: Yes, you can customize the message by modifying the JSX code in the InternetConnection
component. You can add additional elements or styles as needed.
Q: Does the library support server-side rendering (SSR)?
A: No, currently the library is designed for client-side rendering and depends on the window
object. It may not work as expected in server-side rendering environments.
This library is licensed under the MIT License.