Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
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.
var async = require("async"), Azuqua = require("azuqua"); // you can provide your accessKey and accessSecret here, but it's not recommended to hard-code these values var azuqua = new Azuqua(); // the recommended pattern is to store them in a .json file azuqua.loadConfig("./account.json"); // 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!"); }); });
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.
FAQs
The official node.js Azuqua API client library.
We found that azuqua demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.