8000 GitHub - ideawake/node-salesforceiq: SalesforceIQ API wrapper for NodeJS
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ideawake/node-salesforceiq

 
 

Repository files navigation

node-salesforceiq

SalesforceIQ API wrapper for NodeJS

Coverage Status Build Status

Inspired by https://github.com/sjlu/node-relateiq

Usage

Installation

npm install salesforceiq --save

Getting Started

var SalesforceIQ = require('salesforceiq');

var client = new SalesforceIQ(key, secret);
client.createAccount({
  name: "Abacus"
}, function(err, account) {
  console.log(err);
  console.log(account.id);
});

More Examples

Developing

Tests

To run the mocha tests, you'll need to have a valid SalesforceIQ API Key and Secret. Once you have obtained them, you will need to expose them to your local environment.

export SALESFORCEIQ_KEY=
export SALESFORCEIQ_SECRET=

License

MIT.

About

SalesforceIQ API wrapper for NodeJS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%
0