{"id":17475022,"url":"https://github.com/skadimoolam/ping","last_synced_at":"2026-02-07T07:02:23.537Z","repository":{"id":87392107,"uuid":"109500972","full_name":"skadimoolam/ping","owner":"skadimoolam","description":"A Pretty simple utility built with Vue.js to check if a domain is live or down.","archived":false,"fork":false,"pushed_at":"2018-04-24T04:45:45.000Z","size":30,"stargazers_count":19,"open_issues_count":1,"forks_count":8,"subscribers_count":1,"default_branch":"gh-pages","last_synced_at":"2025-10-09T19:16:20.833Z","etag":null,"topics":["server","utility","vue","vuejs"],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/skadimoolam.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-04T14:20:59.000Z","updated_at":"2025-03-15T20:58:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"4cc22ed8-397b-49b0-8e5a-b610868953f5","html_url":"https://github.com/skadimoolam/ping","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/skadimoolam/ping","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skadimoolam%2Fping","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skadimoolam%2Fping/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skadimoolam%2Fping/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skadimoolam%2Fping/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skadimoolam","download_url":"https://codeload.github.com/skadimoolam/ping/tar.gz/refs/heads/gh-pages","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skadimoolam%2Fping/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29188311,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T05:07:31.176Z","status":"ssl_error","status_checked_at":"2026-02-07T05:06:15.227Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["server","utility","vue","vuejs"],"created_at":"2024-10-18T18:42:21.942Z","updated_at":"2026-02-07T07:02:23.523Z","avatar_url":"https://github.com/skadimoolam.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vue Ping\n\n![Screenshot of Vue Ping](https://github.com/skadimoolam/ping/raw/gh-pages/screenshot.png \"Screenshot of Vue Ping\")\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fskadimoolam%2Fping.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fskadimoolam%2Fping?ref=badge_shield)\n\n## Description\n\nA Pretty simple utility built with Vue.js to check if a domain is live or down.\n\nDemo at https://skadimoolam.github.io/ping/\n\nThere's no back-end where domains' details and their past status are stored.\nBut there's a JSON file name `data.json`, with which you can customize the sites this app is tracking.\n\n\n\n## How does it work\n\nVue sends a `fetch` request to the specified url, if it returns `status: 200` then it's most likely alright.\nTo get around `cros` issue, this just sends an opaque request, for which most server respond without the actual\ncontent of their site, but the usual headers are present.\n\n\n## Usage\n\nJust clone this repo anywhere the browser can reach and update the `data.json` with your sites.\n\nThis also has included support for Google Analytics, just switch the Property Id from Google, or you \nremove it completely.\n\n\n## data.json Configurations\n\nThere's not much you can configure, take a look in the code below. Add or remove any site, should work as expected\nif not just make an issue here in Github.\n``` json\n[\n  {\n    \"name\": \"Google IN\",\n    \"url\": \"google.co.in\",\n    \"port\": 80\n  },\n  {\n    \"name\": \"Facebook\",\n    \"url\": \"facebook.com\"\n  },\n  {\n    \"name\": \"Some Random Site\",\n    \"url\": \"somerandomsite.com\",\n    \"port\": 8080\n  }\n]\n```\n\n## Note\nI built this tool for use on a server, if you wish to run it locally you need to have some sort of a server installed. One simple option is `npm install -g serve`. Works great with this tool.\n\n## License\nMIT License\n\nCopyright (c) 2017 Adi \u003cskadimoolam@gmail.com\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fskadimoolam%2Fping.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fskadimoolam%2Fping?ref=badge_large)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskadimoolam%2Fping","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskadimoolam%2Fping","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskadimoolam%2Fping/lists"}