Deploying Node JS Functions

Deploying Node JS Functions

There are two ways for you to script functions in Zoho CRM. Each have their own advantages. You can either,

  • Script in Zoho CRM's editor.
  • Upload a package.

Inline Edit

The editor in Zoho CRM lets you write the function code from scratch within the product itself. The scripting and deployment is taken care of by the editor.

You can script the code in the editor that pops up.

[Image of the editor with a small sample code]

Upload Zip File

The other way is to script the function in any programming language editor and upload the folder to CRM.

[Image of the sample code in any prog lang editor, like Eclipse]

The file that contains the function code must be in "zip" format.



Once the file is uploaded, the in-product editor opens up in Zoho CRM, where you can make modifications to the code.

[Image of editor with the same sample code]


    • Related Articles

    • Initialization - Node JS SDK

      Whenever the app is started, the below code snippet is to be called for initialization. var ZCRMRestClient = require('zcrmsdk'); ZCRMRestClient.initialize().then(function() { //do whatever required after initialize }) Generating self-authorized grant ...
    • Integration Tasks - Node JS

      This guide will help you how to use the integration tasks for Node JS functions, that uses CRM's APIs. Getting Started For starters, the basic difference between Version 1.0 and 2.0 of Zoho APIs is that Field Names are used in the former and API ...
    • Node JS SDK - An Overview

      Node JS SDK offers a way to create client node js applications that can be integrated with Zoho CRM. This SDK makes the access and use of necessary CRM APIs easy. In other words, it serves as a wrapper for the REST APIs, making it easier to use the ...
    • Class Hierarchy - Node JS SDK

      All Zoho CRM entities are modelled as modules having classes, methods and instance variables applicable to that particular entity. ZCRMRestClient is the base class of the Python SDK. ZCRMRestClient has methods to get instances of various other Zoho ...
    • Functions

      Set Up Functions   You can set up functions in six places: Create a standalone function. Associate function to a workflow rule. Use functions later by including them in Schedules. Set the function to get executed upon the click of a Custom Button. ...