DEV Community

Cover image for Document your Azure Function using az-func-as-a-graph
Antoine
Antoine

Posted on • Updated on

Document your Azure Function using az-func-as-a-graph

Photo by Kelly Sikkema on Unsplash

I have found this tool, that let your generate a beautiful image from your Azure function to document them.

Example

Be aware that the tool require Nodejs 10 !

In order to produce it, you need:

  • to have installed globally Azure Function Core Tools
npm i -g azure-functions-core-tools
Enter fullscreen mode Exit fullscreen mode
  • to clone the tool in the directory of the function, and execute the following commands
npm install
npm run build
func start
Enter fullscreen mode Exit fullscreen mode

You whould go to http://localhost:7071/ and see the following screen.

Main Screen

The tool will ask a github repo or a local path to document your Function. It will work with C# Azure Function.

Edit:
this is now available through a vscode extension : durablefunctionsmonitor.durablefunctionsmonitor

Hope this helps !

Oldest comments (0)