https://github.com/lance/conchk
Simple internet connection checker in node.js
https://github.com/lance/conchk
Last synced: 10 months ago
JSON representation
Simple internet connection checker in node.js
- Host: GitHub
- URL: https://github.com/lance/conchk
- Owner: lance
- Created: 2015-07-14T14:33:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-20T16:30:28.000Z (almost 11 years ago)
- Last Synced: 2025-04-05T03:41:57.572Z (over 1 year ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Conchk
A simple internet connection checker. I use this to log the status of my
internet connection once per second, if I am having intermittent issues that
are hard to diagnose. This is a good way to show Charter that the problem
is theirs.
// Usage example. By default Check will log to the console, but not a file.
var Check = require('conchk'),
options = { silent-console: true, filename: 'output.log'},
checker = Check('google.com', 80, options);
setInterval(checker, 1000);