JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q31202F
  • License GPL2

Connect Bridge module for node.js

Package Exports

  • connect-bridge-node

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (connect-bridge-node) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

connect-bridge-node

This module allows to access data of Microsoft Dynamics CRM, Microsoft SharePoint and Microsoft Exchange (and others) via a commercial integration tool called Connect Bridge. Create your own Connect Bridge cloud instance for trial period for FREE using the Connect Bridge Playground

If you are getting error 500 by opening the url, due to a npmjs.com issue that is cutting the query string from the url in rendered hrefs, please copy and paste the url (not the href link) to your browser http://myaccount.connecting-software.com/index.php/en/component/cbplaygroundregistration/?view=index

Technically the module is a wrapper around a proprietary rest service ofan integration tool Connect Bridge Server.

Usage

var cbnode = require('connect-bridge-node')('pg.connecting-software.com', 4433, 'youruser', 'yourpassword', 'your_cb_account');

function onError(err) {
    console.error(err);
}

function onConnected() {
    console.log('connected to Connect Bridge');
    //if connected to i.e. Exchange account, you can query the appointments like this...
    cbnode.execute("select * from Appointment;", [], onResult, onError);        
}

function onDisconnected() {
    console.log('disconnected');
}

function onResult(result)
{
    console.log(result);
    cbnode.disconnect(onDisconnected, onError);
}

cbnode.connect(onConnected, onError);

Developing

Tools

Created with Nodeclipse (Eclipse Marketplace, site)

Nodeclipse is free open-source project that grows with your contributions.