February 14, 2018 By Carlos Santana 2 min read

New Node.js 8 runtime for IBM Cloud Functions

Introducing a new runtime for JavaScript IBM Cloud Functions based on Node.js version 8. Now you can take advantage of the new features that are offered by the recently released Node.js version 8 on Long Term Support (LTS).

This new runtime comes with pre-installed npm packages (bm_db, ibm-cos-sdk, cloudant, watson-developer-cloud) that are useful when integrating serverless functions with IBM Cloud services. For more details on the Node.js 8 environment, check the documentation.

What’s new in Node.js version 8

The next major release of Node.js brings a range or significant changes and additions for JavaScript users. This article highlights the most significant changes and features.

With version 6 of Node.js, you are taking advantage of ES2015 language specification, such as Object destructuring. Now with version 8 of Node.js, you can leverage more language features in your IBM Functions, like JavaScript ES2017 async functions, which makes it easier to write code that can use and create Promises.

Using async functions, waiting for a Promise to resolve is as simple as typing await before it, and proceeding as if the value were synchronously available (without using callbacks).

Example

In this easy to follow example, you can see how to use async and await with IBM Db2 Warehouse on Cloud service.

1. Create a JavaScript file “Employees.js” with the following code:

<br>
   const ibmdb = require('ibm_db')<br>
   const queryString = 'SELECT FIRST_NAME, LAST_NAME, EMAIL from GOSALESHR.employee FETCH FIRST 3 ROWS ONLY'<br>
   async function main ({<br>
   __bx_creds: { dashDB: { ssldsn } }<br>
   }) {<br>
     let connection, result, rows<br>
     try {<br>
      connection = await ibmdb.open(ssldsn)<br>
      rows = await connection.query(queryString)<br>
      connection.close()<br>
      result = { employees: rows }<br>
    } catch (err) {<br>
      console.error(err.message)<br>
      result = { message: err.message }<br>
    }<br>
    return result<br>
   };<br>

2. Deploy your function by using the CLI, and give it the name “Employees”.

bx wsk action update Employees Employees.js --kind nodejs:8

Important: When you create or update an Action, always specify the kind nodejs:8. If the kind is not explicitly provided, the action uses the default nodejs:6 version.

3. Bind the IBM Cloud service to your function to set the ssldsn as a default parameter.

<br>
bx wsk service bind dashDB Employees<br>

For more information about the new service bind for IBM Cloud Functions, see the following blog post.

If you don’t yet have the service created in your Namespace, use the following command to create the service instance.

<br>
bx service create dashDB Entry db2<br>

4. Invoke the Action from the CLI for testing, and retrieve the results:

<br>
bx wsk action invoke Employees -r<br>
<br>
  {<br>
    "employees": [<br>
      {<br>
        "EMAIL": "DPage@grtd123.com",<br>
        "FIRST_NAME": "Denis",<br>
        "LAST_NAME": "Pagé"<br>
      },<br>
      {<br>
        "EMAIL": "EMichel@grtd123.com",<br>
        "FIRST_NAME": "Élizabeth",<br>
        "LAST_NAME": "Michel"<br>
      },<br>
      {<br>
        "EMAIL": "EClermont@grtd123.com",<br>
        "FIRST_NAME": "Émile",<br>
        "LAST_NAME": "Clermont"<br>
      }<br>
    ]<br>
  }<br>

Get started with IBM Cloud Functions with your Free account.

More from

IBM Tech Now: April 22, 2024

< 1 min read - ​Welcome IBM Tech Now, our video web series featuring the latest and greatest news and announcements in the world of technology. Make sure you subscribe to our YouTube channel to be notified every time a new IBM Tech Now video is published. IBM Tech Now: Episode 96 On this episode, we're covering the following topics: IBM watsonx at the Masters BYOM on watsonx.ai The 2023 IBM Impact Report Stay plugged in You can check out the IBM Blog Announcements for…

Deployable architecture on IBM Cloud: Simplifying system deployment

3 min read - Deployable architecture (DA) refers to a specific design pattern or approach that allows an application or system to be easily deployed and managed across various environments. A deployable architecture involves components, modules and dependencies in a way that allows for seamless deployment and makes it easy for developers and operations teams to quickly deploy new features and updates to the system, without requiring extensive manual intervention. There are several key characteristics of a deployable architecture, which include: Automation: Deployable architecture…

For the planet and people: IBM’s focus on AI ethics in sustainability

4 min read - AI can be a force for good, but it might also lead to environmental and sustainability concerns. IBM is dedicated to the responsible development and deployment of this technology, which can enable our clients to meet their sustainability goals. “AI is an unbelievable opportunity to address some of the world’s most pressing challenges in health care, manufacturing, climate change and more,” said Christina Shim, IBM’s global head of Sustainability Software and an AI Ethics Board member. “But it’s important to…

IBM Newsletters

Get our newsletters and topic updates that deliver the latest thought leadership and insights on emerging trends.
Subscribe now More newsletters