hydra-node

0.1.11 • Public • Published

Hydra Node Client

Hydra client is a js file that should be included in the web page or node project.

In a NodeJS project inside package.json:

"hydra-node" : "https://github.com/innotech/hydra_javascript_client.git",

In a website:

<script type="text/javascript" src="http://innotech.github.io/hydra/client/hydra.js"></script>

It provides two functions:

hydra.config([], options)

  • [] - the initial server urls we want to use to access Hydra.
  • options - (optional) object containing the following fields:
    • hydraTimeOut - timeout for updating Hydra Servers. Minimum of 60 seconds
    • appTimeOut - timeout for updating an app server in the internal cache. Minimum 20 seconds
    • retryOnFail - retry timeout in case the hydra we are requesting an app or new Hydra servers fail to answer. Minimum 500ms

By default on the browser, the initial Hydra server will be the host serving the hydra.js client file, making this function call optional, although it’s recommended to set up the servers. The node client have no initial servers, throwing an exception if hydra.config is not call prior to hydra.get

hydra.get(appID, nocache, callback)

This function will call to callback(error, [servers]) function with the url of the server that provides the given appID.

  • appID - id of the application requested
  • nocache - boolean, if set to true will ask the hydra server for the application servers ignoring the internal cache.
  • callback(error, [servers]) - function callback that will receive the app server or an error in case the app does not exist

Internally, it will ask to the first Hydra server or use the internal cache in order to get the corresponding server url for the app and then it will call to callback function. If the application exist, the servers are sent back and served through the callback function (if the application exist, but there are no servers available, it will return an empty array). If the application does not exist, the callback will receive an error and the list will be set to null.

In case an Hydra server fails to answer (when requesting an app or new Hydra servers), the client will try again (based on the retryOnFail timeout) using the next server and moving the one that failed to the end of the list until one of the Hydra servers replies.

License

(The MIT License)

Authors:
Germán Ramos <german.ramos@gmail.com>
Pascual de Juan <pascual.dejuan@gmail.com>
Jonas da Cruz <unlogic@gmail.com>
Luis Mesas <luismesas@gmail.com>
Alejandro Penedo <icedfiend@gmail.com>
Jose María San José <josem.sanjose@gmail.com>

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.

Readme

Keywords

none

Package Sidebar

Install

npm i hydra-node

Weekly Downloads

2

Version

0.1.11

License

none

Last publish

Collaborators

  • apenedo