Tag: NodeJs

Automatic export tool for Salesforce Data Export backups

TL;DR Jump to GitHub for the complete repository: https://github.com/enreeco/sf-automatic-data-export-script/ Have you ever had a close relation with the Salesforce Data Export feature? It’s a way to periodically export all Salesforce data set in zipped CSV files, including files and attachments. You can do a one-shot export or schedule it on monthly (available on Developer Edition […]

[NodeJS] My Simple Static Webserver

a{color:red !important;} When developing pure HTML5 mockups I usually don’t want to install a webserver or host my static pages on a remote webserver… More over I sometimes like to create my own tools even if they are already on the net or they are super duper simple. That’s why I created a simple NodeJS […]

[NodeJS + Salesforce SOAP WS] How to consume a Salesforce SOAP WSDL

I was wondering how to consume Salesforce WSDLs with nodejs. I found Node Soap package (see npm) and I tried to consume a Partner WSDL. Then I saved the WSDL in the “sf-partner.wsdl” file and played with the methods to get nodeJS speak SOAP with Salesforce. var soap = require(‘soap’); var url = ‘./sf-partner.wsdl’; soap.createClient(url, […]

[Salesforce / Canvas / NodeJS] Set up a minimum Canvas App (NodeJS style)

Following the old post [Salesforce / Canvas] Set up a minimum Canvas App (Java style) I’ve decided to put togheter the code I’ve used to talk to a Force.com Canvas App in NodeJS. For those who can’t wait the whole article, this is the repo (CanvasApp-NodeJS-Base). Follow this steps to configure an App (something is […]