Wednesday, 10 January, 2018 UTC


Summary

As a developer I develop and debug code locally as much as possible. I’ve written some sample code that shows how to debug Node.js OpenWhisk functions via Visual Studio Code.
The sample code explains how to debug single-file functions, zipped multi-file functions as well as Node.js functions in Docker containers.
The following screenshot shows how functions that run in Docker can be debugged from Visual Studio Code. In order to do this, a volume is used to share the files between the IDE and the container and VS Code attaches a remote debugger to the Docker container. The functions can be changed in the IDE without having to restart the container. nodemon restarts the Node application in the container automatically when files change.
Get the code from GitHub.
Watch the video to see how to debug OpenWhisk functions with Visual Studio Code.
The post Debugging Apache OpenWhisk Functions with VS Code appeared first on Niklas Heidloff.