What’s happening with IBM Cloud Functions and Node.js?
I’m excited to announce that IBM Cloud Functions officially supports the latest version of Node.js. Last week, a new version of Node.js was released that included security updates, new features, and performance improvements. You can see the full release notes for version 10.x before we offered long-term support to view notable addition and deprecation details, or you can see the break down in the blog post: NodeJS 10: The New, The Changed, and the Deprecated.
Temporary limitations
-
The
watson-developer-cloud
npm package is not embedded into thenodejs:10
runtime . When the major version (4.0.0) is released, thewatson-developer-cloud
is added. You can track the progress through this GitHub issue. -
The
ibm_db
npm package is not available fornodejs:10
at this time and is currently unsupported. You can track the progress through this GitHub issue.
Node.js supports the latest JavaScript specifications, such as arrow functions, async, await, and many others. Check out what’s been updated here: https://node.green/
Ready to try it out?
You can deploy this example action by using the IBM Cloud CLI. Console UI support for Node.js 10
is coming soon.
Here is a simple hello world action:
To create a web action with the IBM Cloud Functions CLI plugin, run the following command:
To get the URL for the web action and open it in your browser, run the following command:
Node.js version 6: Deprecated, EOL April 2019
As part of this update, version 6 is being deprecated. According to the Node.js Foundation release schedule, end of life for version 6 is April 2019. This means that IBM Cloud Functions can no longer support version 6. Any functions that are tagged with kind nodejs:6
will no longer be invoked. To make the transition as smooth as possible, we recommend that you start migrating as soon as possible and begin using kind nodejs:10
in any new Node.js functions that you create.
Node.js version 8: Decreased maintenance, January 2019
At the start of the new year, version 8 will move from active long-term service to maintenance mode. This means that version 8 will no longer be able to be received by back ports, and the Node.js community will focus their efforts on keeping version 10 up to date. You can follow progress and see updates through GitHub issues. Again, to make this transition as smooth as possible, we recommend that you start migrating as soon as possible and begin using kind nodejs:10
in any new Node.js functions that you create.
How do I learn more?
You can learn more about the service and creating actions in the IBM Cloud Functions documentation.