/kettraworld-ping

šŸŒ€ you can use it to keep your repl.it/site or similar projects online 24/7!

Primary LanguageJavaScriptApache License 2.0Apache-2.0

information

you can use it to keep your repl.it/site or similar projects online 24/7!

ā€¢ ā±ļø Easy to use and completely free!

ā€¢ šŸš€ You can also create a web server for your project, to make it pingable

ā€¢ āš™ļø Custom ping range option and custom port for web server option

documentaĆ§Ć£o

methods Model Description
ping("name", "url", interval in ms); String, String, Number Starts pinging the given url.
webserver(port); Number Create a simple websever for your project to make it pingable.

code

 // importing the package
import ping from 'kettraworld-ping';
 
 // creating the server, default port 3000
ping.webserver();

 // ping a website...
ping.ping('localhost','http://0.0.0.0:3000', 10000);