serverless-workflow-visualizer VS serverless-websockets-quest

Compare serverless-workflow-visualizer vs serverless-websockets-quest and see what are their differences.

serverless-workflow-visualizer

Web application that uses Ably to visualize the progress of a serverless workflow. (by ably-labs)

serverless-websockets-quest

An ADND style web-based game that combines serverless with websockets to achieve a realtime experience (by ably-labs)
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
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
serverless-workflow-visualizer serverless-websockets-quest
7 5
4 8
- -
0.0 0.0
8 months ago 7 months ago
Vue TypeScript
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

serverless-workflow-visualizer

Posts with mentions or reviews of serverless-workflow-visualizer. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-11.

serverless-websockets-quest

Posts with mentions or reviews of serverless-websockets-quest. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-11.
  • One year at Ably as a Developer Advocate
    11 projects | dev.to | 11 Nov 2022
    Live demo
  • Using serverless WebSocksets with Azure Functions & Durable Entities
    2 projects | /r/AZURE | 1 Jul 2022
    Hi all, I created a web app (ADnD style mini game) recently to demonstrate how to use serverless WebSockets (Ably) and combine it with Azure Functions to send realtime updates to the client (based on VueJS and hosted on Azure Static Web Apps). The Azure Functions use Durable Entities (part of Durable Functions) to store a centralized game state, and as soon as the state is updated the clients are notified of this change. Full blog post is here, the game can be played here, and you can have look at the code on GitHub.
  • Quest for serverless WebSockets, an adventure with Azure Functions & Durable Entities
    4 projects | dev.to | 30 Jun 2022
    [JsonObject(MemberSerialization.OptIn)] public class GameState : IGameState { // Only showing the class members relevant for this blog section. // For the full implementation see https://github.com/ably-labs/serverless-websockets-quest/blob/main/api/Models/GameState.cs [JsonProperty("questId")] public string QuestId { get; set; } [JsonProperty("phase")] public string Phase { get; set; } public async Task InitGameState(string[] gameStateFields) { QuestId = gameStateFields[0]; Phase = gameStateFields[1]; await _publisher.PublishUpdatePhase(QuestId, Phase); } [JsonProperty("players")] public List PlayerNames { get; set; } public async Task AddPlayerName(string playerName) { if (PlayerNames == null) { PlayerNames = new List { playerName }; } else { PlayerNames.Add(playerName); } if (IsPartyComplete) { await UpdatePhase(GamePhases.Play); await Task.Delay(2000); await AttackByMonster(); } } public async Task UpdatePhase(string phase) { Phase = phase; await _publisher.PublishUpdatePhase(QuestId, Phase); } private async Task AttackByMonster() { var playerAttacking = CharacterClassDefinitions.Monster.Name; var playerUnderAttack = GetRandomPlayerName(); var damage = CharacterClassDefinitions.GetDamageFor(CharacterClassDefinitions.Monster.CharacterClass); await _publisher.PublishPlayerAttacking(QuestId, playerAttacking, playerUnderAttack, damage); await Task.Delay(1000); var playerEntityId = new EntityId(nameof(Player), Player.GetEntityId(QuestId, playerUnderAttack)); Entity.Current.SignalEntity(playerEntityId, proxy => proxy.ApplyDamage(damage)); await Task.Delay(1000); var nextPlayerName = GetNextPlayerName(CharacterClassDefinitions.Monster.Name); await _publisher.PublishPlayerTurnAsync(QuestId, $"Next turn: {nextPlayerName}", nextPlayerName); } }

What are some alternatives?

When comparing serverless-workflow-visualizer and serverless-websockets-quest you can also consider the following projects:

agile-flush-vue-app - Use this app to collaboratively estimate the stories for the next sprint.

ably-control-api-action - A GitHub Action to use the Ably Control API.

blazor-starter - A starter template in C# APIs and Blazor for Azure Static Web Apps

oclif - CLI for generating, building, and releasing oclif CLIs. Built by Salesforce.

pubsub-demo-dotnet - Sample app to demonstrate how to do pub/sub using the Ably .NET SDK.

DurableFunctionsMonitor - A monitoring/debugging UI tool for Azure Durable Functions

ably-cli

collaborative-pixel-drawing - A collaborative pixelart drawing carnvas to demonstrate pub/sub using Ably or Azure WebPubSub.

ably-airtable-starter-kit - A fully functional starter kit to store realtime messages from Ably into Airtable via WebHooks