{"id":32118706,"url":"https://github.com/starryshark/deno-zabbix","last_synced_at":"2026-05-17T09:40:08.802Z","repository":{"id":55600387,"uuid":"286373706","full_name":"StarryShark/deno-zabbix","owner":"StarryShark","description":"Zabbix API Client for JavaScript/TypeScript Deno Runtime.","archived":false,"fork":false,"pushed_at":"2020-12-19T06:15:50.000Z","size":27,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-13T17:34:48.005Z","etag":null,"topics":["deno","deno-module","typescript","zabbix","zabbix-api","zabbix-sender"],"latest_commit_sha":null,"homepage":"https://deno.land/x/zabbix","language":"TypeScript","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/StarryShark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-10T04:15:23.000Z","updated_at":"2022-07-21T11:52:03.000Z","dependencies_parsed_at":"2022-08-15T04:01:15.384Z","dependency_job_id":null,"html_url":"https://github.com/StarryShark/deno-zabbix","commit_stats":null,"previous_names":["sumitgoelpw/deno-zabbix"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/StarryShark/deno-zabbix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StarryShark%2Fdeno-zabbix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StarryShark%2Fdeno-zabbix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StarryShark%2Fdeno-zabbix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StarryShark%2Fdeno-zabbix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StarryShark","download_url":"https://codeload.github.com/StarryShark/deno-zabbix/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StarryShark%2Fdeno-zabbix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32038456,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["deno","deno-module","typescript","zabbix","zabbix-api","zabbix-sender"],"created_at":"2025-10-20T17:33:00.283Z","updated_at":"2026-04-20T08:02:42.850Z","avatar_url":"https://github.com/StarryShark.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# deno-zabbix\n\nZabbix is an open-source monitoring software that monitors almost everything like networks, servers, applications, etc. You may learn more about Zabbix at [www.zabbix.com](https://www.zabbix.com/).\n\n**Deno-Zabbix** is a [Deno](https://deno.land) module for JavaScript/TypeScript runtime environment to interact with Zabbix APIs. There are no third-party module dependencies.\n\n## Table of Contents\n\n- [Usage](#usage)\n- [Examples](#examples)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Usage\n\nPlease make necessary changes in `url`, `user`, and `password` below and save it in a file `getHost.ts`. The example below is implicitly using the latest version of `deno-zabbix` module.\n\n```ts\nimport { Zabbix } from \"https://deno.land/x/zabbix/mod.ts\";\n\nconst zabbix: Zabbix = new Zabbix({\n  url: \"http://127.0.0.1/api_jsonrpc.php\",\n  user: \"Admin\",\n  password: \"zabbix\",\n});\n\nconst main = async () =\u003e {\n  try {\n    await zabbix.login()\n    const host = await zabbix.request('host.get', {\n      selectInterfaces: 'extend',\n      limit: 1\n    })\n    console.log(JSON.stringify(host, null, 2))\n    zabbix.logout()\n  } catch (error) {\n    console.error(error)\n  }\n}\nmain()\n```\n\nRun the program:\n\n```shell\ndeno run --allow-net getHost.ts\n```\n\n## Examples\n\nPlease check the examples below to get started.\n\n- [getHost](examples/getHost.ts)\n\n## Contributing\n\n👋Thanks for thinking about contributing to `deno-zabbix`! Please check out [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## License\n\n[MIT](LICENSE)\n\nCopyright (c) 2020 Sumit Goel.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarryshark%2Fdeno-zabbix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstarryshark%2Fdeno-zabbix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarryshark%2Fdeno-zabbix/lists"}