{"id":16327324,"url":"https://github.com/bryopsida/node-helm","last_synced_at":"2026-02-07T01:06:14.101Z","repository":{"id":179872020,"uuid":"664094694","full_name":"bryopsida/node-helm","owner":"bryopsida","description":"Node.JS bindings for helm","archived":false,"fork":false,"pushed_at":"2026-01-19T21:22:56.000Z","size":392,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-20T04:05:47.043Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bryopsida.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-08T22:37:41.000Z","updated_at":"2026-01-19T21:22:35.000Z","dependencies_parsed_at":"2023-09-27T08:45:58.813Z","dependency_job_id":"eea00274-cad8-42bd-b209-a2b4d1d4d06a","html_url":"https://github.com/bryopsida/node-helm","commit_stats":null,"previous_names":["bryopsida/node-helm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bryopsida/node-helm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-helm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-helm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-helm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-helm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bryopsida","download_url":"https://codeload.github.com/bryopsida/node-helm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-helm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29183323,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T00:44:15.062Z","status":"ssl_error","status_checked_at":"2026-02-07T00:35:01.758Z","response_time":59,"last_error":"SSL_read: 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":[],"created_at":"2024-10-10T23:11:06.420Z","updated_at":"2026-02-07T01:06:14.049Z","avatar_url":"https://github.com/bryopsida.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Node-Helm\n\n## Getting Started\n\nThis library will automatically download the helm binary for your system when possible and co-locate it on install. If you wish to disable this behavior you can set the environment variable `NODE_HELM_SKIP_DOWNLOAD` to true or disable the script execution using npm's `--ignore-scripts`. However, if you do this you are responsible for providing a compatible helm binary.\n\nIf you wish to validate how the binary is downloaded see: [here](https://raw.githubusercontent.com/bryopsida/node-helm/main/scripts/fetchHelmBinary.js)\n\nTo install this library run `npm install --save @bryopsida/helm`\n\nIn your app,\n\nStart by adding the import\n\n### CommonJS\n\n```javascript\nconst { Helm } = require('@bryopsida/helm')\n```\n\n### ESM\n\n```javascript\nimport { Helm } from '@bryopsida/helm'\n```\n\n### Creating an instance\n\n#### Defaults\n\n```javascript\nconst helm = new Helm()\n```\n\n#### Specify helm binary\n\n```javascript\nconst helm = new Helm({\n    binaryPath: \u003cpath to your helm3 binary\u003e\n})\n```\n\n### Listing Helm Releases\n\n```javascript\nconst releases = await helm.list({\n  all: true,\n  allNamespaces: true,\n})\nconsole.log('==== Helm Releases ====')\nreleases.forEach((release) =\u003e {\n  console.log(`Name = ${release.name}`)\n  console.log(`Namespace = ${release.namespace}`)\n  console.log(`Chart = ${release.chart}`)\n  console.log(`Status = ${release.status}`)\n})\nconsole.log('==== End Helm Releases ====')\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryopsida%2Fnode-helm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbryopsida%2Fnode-helm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryopsida%2Fnode-helm/lists"}