Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Latest commit

 

History

History
34 lines (24 loc) · 1.1 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.1 KB

vmcjs NPM version

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. [email protected]
export CF_PWD=<CloudFoundry user password>
export CF_ADMIN_EMAIL=<CloudFoundry administrator email> e.g. [email protected]
export CF_ADMIN_PWD=<CloudFoundry administrator password>

Then run the tests with: expresso -I lib