Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 689 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 689 Bytes

Rackspace Database as a Service Node.js Bindings

Initial Project to open up the Rackspace DBaaS to Node.js through there API.

Based upon https://github.com/nodejitsu/node-cloudservers as much of the api structure is the same

Installing clouddatabase

  npm install clouddatabase

Getting Started

Before we can do anything with clouddatabase, we have to create a client with valid credentials. Clouddatabase will authenticate for you automatically:

  var clouddatabase = require('clouddatabase');
  var config = {
    auth : {
      username: 'your-username',
      apiKey: 'your-api-key'
    }
  };
  var client = clouddatabase.createClient(config);