{"id":21611260,"url":"https://github.com/runnerty/executor-check-online-service","last_synced_at":"2025-03-18T16:04:37.738Z","repository":{"id":19938068,"uuid":"88345090","full_name":"runnerty/executor-check-online-service","owner":"runnerty","description":"Runnerty module: Check Online Service Executor","archived":false,"fork":false,"pushed_at":"2023-04-18T10:01:49.000Z","size":180,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-28T14:11:18.961Z","etag":null,"topics":["check-online","check-service","checker","executor","runnerty","site-audit"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/runnerty.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}},"created_at":"2017-04-15T12:19:41.000Z","updated_at":"2022-01-19T10:48:53.000Z","dependencies_parsed_at":"2022-08-07T09:15:45.224Z","dependency_job_id":null,"html_url":"https://github.com/runnerty/executor-check-online-service","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/runnerty%2Fexecutor-check-online-service","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/runnerty%2Fexecutor-check-online-service/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/runnerty%2Fexecutor-check-online-service/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/runnerty%2Fexecutor-check-online-service/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/runnerty","download_url":"https://codeload.github.com/runnerty/executor-check-online-service/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244257278,"owners_count":20424130,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["check-online","check-service","checker","executor","runnerty","site-audit"],"created_at":"2024-11-24T21:11:43.055Z","updated_at":"2025-03-18T16:04:37.709Z","avatar_url":"https://github.com/runnerty.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"http://runnerty.io\"\u003e\n    \u003cimg height=\"257\" src=\"https://runnerty.io/assets/header/logo-stroked.png\"\u003e\n  \u003c/a\u003e\n  \u003cp align=\"center\"\u003eSmart Processes Management\u003c/p\u003e\n\u003c/p\u003e\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Dependency Status][david-badge]][david-badge-url]\n\u003ca href=\"#badge\"\u003e\n  \u003cimg alt=\"code style: prettier\" src=\"https://img.shields.io/badge/code_style-prettier-ff69b4.svg\"\u003e\n\u003c/a\u003e\n\n# Check Online Service executor for [Runnerty]:\n\n### Installation:\nThrough NPM\n\n```bash\nnpm i @runnerty/executor-check-online-service\n```\n\nYou can also add modules to your project with [runnerty]\n\n```bash\nnpx runnerty add @runnerty/executor-check-online-service\n```\n\nThis command installs the module in your project, adds example configuration in your [config.json] and creates an example plan of use.\n\nIf you have installed [runnerty] globally you can include the module with this command:\n\n```bash\nrunnerty add @runnerty/executor-check-online-service\n```\n\n### Configuration sample:\nAdd in [config.json]:\n```json\n{\n  \"id\": \"check_online_service_default\",\n  \"type\": \"@runnerty-executor-check-online-service\"\n}\n```\n\n### Plan sample:\nAdd in [plan.json]:\n```json\n{\n  \"id\":\"check_online_service_default\",\n  \"hostname\": \"http://www.google.com/en\",\n  \"check_contains\": \"I'm Feeling Lucky\"\n}\n```\n\n### Plan advanced:\nAdd in [plan.json]:\n```json\n{\n  \"id\":\"check_online_service_default\",\n  \"hostname\": \"http://www.google.com/en\",\n  \"check_contains\": \"I'm Feeling Lucky\",\n  \"method\": \"GET\",\n  \"auth\":{\n    \"user\": \"user\",\n    \"pass\": \"password\",\n  }\n}\n```\n```json\n{\n  \"id\":\"check_online_service_default\",\n  \"hostname\": \"http://www.myservice.com/api/health\",\n  \"headers\": { \"User-Agent\": \"runnerty\", \"Content-Type\": \"application/json\" }\n}\n```\n```json\n{\n  \"id\":\"check_online_service_default\",\n  \"hostname\": \"http://www.myservice.com/api/health\",\n  \"timeout\": \"5s\"\n}\n```\n\n[Runnerty]: https://www.runnerty.io\n[downloads-image]: https://img.shields.io/npm/dm/@runnerty/executor-check-online-service.svg\n[npm-url]: https://www.npmjs.com/package/@runnerty/executor-check-online-service\n[npm-image]: https://img.shields.io/npm/v/@runnerty/executor-check-online-service.svg\n[david-badge]: https://david-dm.org/runnerty/executor-check-online-service.svg\n[david-badge-url]: https://david-dm.org/runnerty/executor-check-online-service\n[config.json]: http://docs.runnerty.io/config/\n[plan.json]: http://docs.runnerty.io/plan/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frunnerty%2Fexecutor-check-online-service","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frunnerty%2Fexecutor-check-online-service","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frunnerty%2Fexecutor-check-online-service/lists"}