A client implementation for Rackspace CloudDatabase in node.js
npm install clouddatabaseInitial 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
npm install clouddatabase
var clouddatabase = require('clouddatabase');
var config = {
auth : {
username: 'your-username',
apiKey: 'your-api-key'
}
};
var client = clouddatabase.createClient(config);