0.0.1 • Published 7 years ago

broscript-client v0.0.1

Weekly downloads
3
License
-
Repository
-
Last release
7 years ago

#Getting started

BroScriptLib

Installation

The SDK relies on Node Package Manager (NPM) being available to resolve dependencies. Once published you will need copy the folder broscriptlib in to your node_modules folder.

Usage

The following shows how import and use the controller:

  1. Import the module:

    var broscriptlib = require('broscriptlib');
  2. Configure any authentication parameters. For example:

    var config = broscriptlib.configuration;
    config.apikey = a_secret_key;
  3. Access various controllers by:

    var controller = broscriptlib.XYZ;
    controller.getItems(id, callback);