Node.js SDK updates: promises and more
Get the latest updates for the eSignature REST API Node.js SDK.
Table of contents
The new 4.2.1 version of the Docusign Node.js SDK is now available on the NPM package site.
It’s packed with fresh code and new features. In this post, I will discuss the new promises feature.
Promises
Not familiar with promises? They’re the best software pattern for working with asynchronous methods. Promises for JavaScript and Node.js have been around for several years now via third-party libraries. The JavaScript native promises (known as Promises/A+) specification was published in 2014.
Promises enable you to avoid the “callback hell” that infests so many Node.js programs where nested callbacks quickly become confusing and error prone.
These days, native JavaScript promises are widely supported both in browsers and in Node. Especially since Node 8 with Long Term Support (LTS) shipped in 2017.
And what’s better than promises? Async and await support, also included with Node 8.
While prior versions of the Docusign Node.js SDK could be converted to use promises, the new version’s native support enables even more straight-forward programming.
The new release supports native JavaScript promises without breaking current SDK clients: if the last argument to an SDK method is a function, then the function will be used as the method’s callback function (same as prior releases). If the last argument to an SDK method is not a function, then the method will return a promise.
Let’s see what the async / await pattern looks like, including error handling:
/** * Note the async keyword in the function declaration *// async function sendEnvelope { // Create the envelope definition in envDef … // Send the envelope: // 1. create the apiClient and envelopesApi SDK objects const apiClient = new docusign.ApiClient(); apiClient.setBasePath(basePath); apiClient.addDefaultHeader('Authorization', 'Bearer ' + accessToken); let envelopesApi = new docusign.EnvelopesApi() , results; // 2. Call the API with try/catch blocks try { // Note the await keyword. No callbacks! results = await envelopesApi.createEnvelope( accountId, {'envelopeDefinition': envDef})
}
Doesn’t the above code look good? No callbacks, no testing of error arguments!
Try out promises for yourself via the Node.js code example.
And that’s not all!
Check out the release’s Changelog for more information on the additional updates in the release.
Are you already using or planning to use promises? Do you have ideas for future developer blog posts? Let me know via developers@docusign.com.
Larry Kluger has over 40(!) years of tech industry experience as a software developer, developer advocate, entrepreneur, and product manager. An award-winning speaker with a 48K StackOverflow reputation, he enjoys giving talks and helping the ISV and developer communities.
Twitter: @larrykluger
LinkedIn: https://www.linkedin.com/in/larrykluger/
Related posts