jiff-client

JIFF Client.

Exposes the constructor for the JIFFClient class.

In the browser, this adds JIFFClient as a global identifier.

In the browser, this can be accessed via:


  <script src="jiff-client.js"></script>
  <script type="text/javascript">
    var jiffClientInstance = new JIFFClient(hostname, computationId, options);
  </script>

In node.js, this can be accessed via:


  const JIFFClient = require('jiffClient');
  const jiffClientInstance = new JIFFClient(hostname, computationId, options);

Description:
  • JIFF Client.

    Exposes the constructor for the JIFFClient class.

    In the browser, this adds JIFFClient as a global identifier.

    In the browser, this can be accessed via:

    
      <script src="jiff-client.js"></script>
      <script type="text/javascript">
        var jiffClientInstance = new JIFFClient(hostname, computationId, options);
      </script>
    

    In node.js, this can be accessed via:

    
      const JIFFClient = require('jiffClient');
      const jiffClientInstance = new JIFFClient(hostname, computationId, options);
    
    
Source:

Classes

JIFFClient