Create realtime dashboards to show serverless workflow progress

This page summarizes the projects mentioned and recommended in the original post on dev.to

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • serverless-workflow-visualizer

    Web application that uses Ably to visualize the progress of a serverless workflow.

  • public class PizzaWorkflowOrchestrator { [FunctionName(nameof(PizzaWorkflowOrchestrator))] public async Task Run( [OrchestrationTrigger] IDurableOrchestrationContext context, ILogger logger) { var order = context.GetInput(); var instructions = await context.CallActivityAsync>( nameof(ReceiveOrder), order); await context.CallActivityAsync( nameof(SendInstructionsToKitchen), instructions); var preparationTasks = new List(); foreach (var instruction in instructions) { if (instruction.MenuItem.Type == MenuItemType.Pizza) { preparationTasks.Add(context.CallActivityAsync( nameof(PreparePizza), instruction)); } } await Task.WhenAll(preparationTasks); await context.CallActivityAsync( nameof(CollectOrder), order); await context.CallActivityAsync( nameof(DeliverOrder), order); await context.CallActivityAsync( nameof(DeliveredOrder), order); } } /// For the full implementation see https://github.com/ably-labs/serverless-workflow-visualizer/blob/main/api/PizzaWorkflow/Orchestrators/PizzaWorkflowOrchestrator.cs.

  • core

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web. (by vuejs)

  • Vue3, a popular front-end framework.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Show HN: Serverless Pizza Workflow Visualizer

    1 project | news.ycombinator.com | 19 Oct 2022
  • Creating realtime dashboards to visualize serverless workflow progress

    1 project | /r/AZURE | 19 Oct 2022
  • One year at Ably as a Developer Advocate

    11 projects | dev.to | 11 Nov 2022
  • The Sound of Software

    1 project | news.ycombinator.com | 27 Apr 2024
  • Provider "/subscriptions/##-##/providers/Microsoft.Resources" does not have resource type "resourceGroups".

    1 project | /r/MSFTAzureSupport | 18 Nov 2023