vmcjs

0.1.12 • Public • Published

vmcjs

A node.js library version of the CloudFoundry VMC gem.

Copyright 2011, FeedHenry Ltd. Licensed under the MIT license, please see the LICENSE file. All rights reserved.

Installation

npm install vmcjs

Example usage

var vmcjs = require('vmcjs');
var vmc = new vmcjs.VMC(target, user, pwd);
vmc.login(function(err) {
  vmc.apps(function(err, apps){
    console.dir(apps)
  });
});

See the tests for more sample API usage.

Running tests

You need to set your own CloudFoundry account credentials before running the tests. First, set the following three environment variables:

export CF_TARGET=<CloudFoundry target> e.g. for a local micro instance http://api.<name>.cloudfoundry.me
export CF_EMAIL=<CloudFoundry user email> e.g. foo@bar.com
export CF_PWD=<CloudFoundry user password>
export CF_ADMIN_EMAIL=<CloudFoundry administrator email> e.g. foo@vmware.com
export CF_ADMIN_PWD=<CloudFoundry administrator password>

Then run the tests with: expresso -I lib

Readme

Keywords

none

Package Sidebar

Install

npm i vmcjs

Weekly Downloads

1

Version

0.1.12

License

none

Last publish

Collaborators

  • dberesford
  • feedhenry-dev
  • grdryn
  • wtrocki