vapour

0.0.1 • Public • Published

Vapour

Vapour

Vapor is responsible for the familiar processes of cloud formation Wikipedia

var vapour = require('vapour');
 
// make a new housing project pointing to a JSON DB file
var cloud = vapour.openProject({
    file:'/tmp/nimbus.json'
});
 
// get a list of the servers in our current project
var servers = cloud.listServers();
 
// we are going to build some homes - get a contractor for the contract
var rackspace = cloud.provider('rackspace', {
    username:'...',
    apiKey:'...'
});
 
// make a new home (with the default flavour)
project.buildServer({
    name:'Database',
    contractor:rackspace
}, function(error, server){
 
    // we have built a new server and the housingproject has given us the keys
    var ipAddress = server.ip;
    var privateKey = server.privateKey;
 
    // the server is now saved into the project
});

Installation

$ npm install vapour

Running Tests

To run the test suite first invoke the following command within the repo, installing the development dependencies:

$ npm install

then run the tests:

$ make test

License

(The MIT License)

Copyright (c) 2006-2012 jQuarry <wtf@jquarry.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependents (0)

Package Sidebar

Install

npm i vapour

Weekly Downloads

0

Version

0.0.1

License

none

Last publish

Collaborators

  • binocarlos