0.0.14 • Published 10 years ago

helmjs v0.0.14

Weekly downloads
1
License
BSD-2-Clause
Repository
github
Last release
10 years ago

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();
});
0.0.14

10 years ago

0.0.13

10 years ago

0.0.12

10 years ago

0.0.11

10 years ago