helmjs
v0.0.14
Published
helmjs is a nodejs package to utilize helm.sh. inspiration comes from the k8s npm package.
Downloads
16
Readme
Nodejs Helm.sh client
This is a Node.js client library for the helm.sh program.
Install:
npm install helmjs
Usage
Create a Client
var helmjs = require('helmjs');
var helm = helmjs.helm({binary: '/opt/helm/helm'});
// get a full list of helm packages
helm.list(function(err, data){
done();
});
// search for a specific package
helm.search('rabbitmq', function(err, data){
console.log(data);
done();
});
// get detailed info on a package
helm.info('rabbitmq', function(err, pkg){
console.log(data);
done();
});