An nforce plugin that facilitates working with actions
npm install nforce-actionsnforce-actions
===============
An nforce plugin that facilitates working with actions
First, install nforce-actions with npm
``bash`
$ npm install nforce-actions
Load the plugin
`js
var nforce = require('nforce');
// load the nforce-actions plugin
require('nforce-actions')(nforce);
var org = nforce.createConnection({
clientId: '
clientSecret: '
redirectUri: '
username: process.env.SFUSER,
password: process.env.SFPASS,
plugins: ['customActions'] // loads the plugin in this connection
});
``