Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.
/ azuqua.js Public archive

Client node.js npm repository for invoking Flõs on Azuqua. https://www.npmjs.com/package/azuqua

License

Notifications You must be signed in to change notification settings

azuqua/azuqua.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Azuqua Node.js client

This library provides an easy interface for interacting with your Azuqua flos. The Azuqua API is directly exposed to developers should you wish to write your own library. For full API documentation please visit developer.azuqua.com

Installation:

npm install azuqua

In order to make API requests you will need both your accessKey and accessSecret. These can also be found on your account information page.

Usage

All asynchronous functions can return a promise if you prefer that pattern. When you call an asynchronous function and leave the callback undefined it will return a promise. By default Azuqua uses bluebird.

var async  = require("async"),
    config = require("./config.json"),
    Azuqua = require("azuqua");

var httpOptions = {
  host: "api.azuqua.com", // URL of the api for your instance
  port: 443,
  protocol: "https"
};

var azuqua = new Azuqua(
  // accessKey and accessSecret are obtainable from the account options in the Azuqua designer
  config.accessKey,
  config.accessSecret,
  httpOptions // this is optinal - only required if you are not interacting with the production Azuqua.com instance
);

// invoke all your flos
var data = { a: 1 };
azuqua.flos(function(error, flos){
	async.each(flos, function(flo, callback){
		azuqua.invoke(flo, data, function(err, resp){
			if(err){
				console.log("Error invoking flo!", flo, err);
				callback(err);
			}else{
				console.log("Flo returned: ", resp);
				callback();
			}
		});
	}, function(err){
		if(err)
			console.log("Flo invocation loop stopped!", err);
		else
			console.log("Finished invoking flos!");
	});
});

LICENSE - "MIT License"

Copyright (c) 2014 Azuqua

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.