diff --git a/README.md b/README.md index 3c9faa0..22eb492 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,13 @@ This project facilitates the integration of Javascript applications with Apache CloudStack through its API. It is a Javascript framework that enables the execution of requests to Apache CloudStack API. If you want to write only a simple script I recommend you using CloudMonkey, instead of this framework. However, if you have the need to write a Javascript application that has to consume Apache CloudStack API, you are welcome to use this framework. -You can find examples on how to use the framework at examples. The usage is as simple as that: +The latest version can be found at: latest. You can find examples on how to use the framework at examples. There is also a live demo at: live demo. The usage is as simple as that: ```javascript var secretKey = 'secretKey'; var apiKey = 'apiKey'; var clientUrl = 'https://cloud.domain.com/client'; - var apacheCloudStackClient = autonomiccs.createApacheCloudStackClient(clientUrl, {apiKey: apiKey, secretKey: secretKey});