waterline-salesforce

2.0.1 • Public • Published

image_squidhome@2x.png

Salesforce

Waterline adapter for salesforce.com.

This is a rough implementation, so PRs are welcome. We're using it on several of our projects, and we'll be making fixes and updates as needed, but raising issues will help us harden this implementation.

Installation

Install from NPM.

$ npm install waterline-salesforce --save

Waterline Configuration

Add the salesforce config to the config/adapters.js file.

Using with Waterline v0.10.x

var config = {
  adapters: {
    salesforce: salesforceAdapter
  },
  connections: {
    salesforce: {
      adapter: 'salesforce',
      connectionParams: {
        loginUrl: 'https://test.salesforce.com'
      },
      username: '{{username}}',
      password: '{{password}}{{accessToken}}'
    }
  }
};
 
waterline.initialize(config, function (err, ontology) {
 
});

/waterline-salesforce/

    Package Sidebar

    Install

    npm i waterline-salesforce

    Weekly Downloads

    2

    Version

    2.0.1

    License

    MIT

    Last publish

    Collaborators

    • ksmithut
    • sethtippetts