1.0.7 • Published 9 years ago

node-catc v1.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

#node-catc

A node.js wrapper for the Cloud At Cost API.

API Version: v1

References

https://github.com/cloudatcost/api

Installation

npm install node-catc

Example

var CatC = require('node-catc');

var api = new CatC('APIKEY', 'LOGINEMAIL');

api.listServers(function(err, res) {
  if(!err) {
    for(var i in res.data) {
      console.log(res.data[i]);
    }
  }
});

api.listTemplates(function(err, res) {
  if(!err) {
    for(var i in res.data) {
      console.log(res.data[i]);
    }
  }
});

License

node-catc is licensed under MIT License. (See LICENSE)

TODO

  • Tests
1.0.7

9 years ago

1.0.6

9 years ago

1.0.5

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago