Hello folks

I just published a new simple automation library for Windows Azure called
azure-scripty: https://npmjs.org/package/azure-scripty

Basically what it does is allow you to do is call the azure-cli as if it
was an API. It also supports the ability to batch together commands. All
results are in JSON (as our CLI supports this), making it easy to wire
things up in your scripts.

Here's a simple example of how to use it. In this case

var scripty = require('azure-scripty');
scripty.invoke(['site create mysite --git', 'site config add foo=bar',
'site show mysite'], function(err, results){
  console.log(results[2]) //shows the site details
});

I have a bunch of ideas of where to go with this, with adding some sort of
piping syntax to the top of the list.

If you guys have any ideas on things I should add, or have general feedback
let me know.

Thanks
Glenn

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to