Skip to content

thegrtnx/react-check-internet-status

Repository files navigation

✨ react-check-internet-status

This is a react-typescript project created by Abolade Greatness, helping you check if a device is connected to the internet or disconnected

stacked

🔧 Installation

npm i react-check-internet-status

I'll provide support for other packages with time. Happy to collaborate with anyone. 🤝

😍 Features

  • Customize position of the notification based on react-toastify positioning
  • Customize the online and offline messages based on choice
  • Easy to set up for real, you can make it work in less than 10sec!
  • Super easy to customize
  • Set custom duration with choice
  • Create custom array of words
  • Typescript supported

The gist

  • JSX
import React from "react";
import { InternetStatus } from "react-check-internet-status";

const App: React.FC = () => {
	return (
		<div>
			<h1>Your App</h1>
			<InternetStatus
				position="bottom-right"
				onlineMessage="Custom online message 🌐"
				offlineMessage="Custom offline message ❌"
			/>
		</div>
	);
};

export default App;
  • TSX
"use client";
import React from "react";
import { InternetStatus } from "react-check-internet-status";

const App: React.FC = () => {
	return (
		<div>
			<h1>Your App</h1>
			<InternetStatus
				position="bottom-right"
				onlineMessage="Custom online message 🌐"
				offlineMessage="Custom offline message ❌"
			/>
		</div>
	);
};

export default App;

✨ Styling

position = "top-left || top-right || top-center || bottom-left || bottom-right || bottom-center";

🚀 Demo

coming soon!

🤝 Contribute

Show your ❤️ and support by giving a ⭐. Any suggestions are welcome! Take a look at the contributing guide.

You can also find me on twitter and Linkedin. My pseudo is [thegrtnx].

🤐 License

Licensed under MIT

About

Check if device is connected to the internet or disconnected

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published