oclif VS serverless-websockets-quest

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

oclif

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

serverless-websockets-quest

An ADND style web-based game that combines serverless with websockets to achieve a realtime experience (by ably-labs)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
oclif serverless-websockets-quest
34 5
8,844 8
0.8% -
9.5 0.0
about 20 hours ago 7 months ago
TypeScript TypeScript
MIT License 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.

oclif

Posts with mentions or reviews of oclif. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-29.

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 oclif and serverless-websockets-quest you can also consider the following projects:

Commander.js - node.js command-line interfaces made easy

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

Ink - 🌈 React for interactive command-line apps

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

yargs - yargs the modern, pirate-themed successor to optimist.

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

pkg - Package your Node.js project into an executable

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

zx - A tool for writing better scripts

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

enquirer - Stylish, intuitive and user-friendly prompts, for Node.js. Used by eslint, webpack, yarn, pm2, pnpm, RedwoodJS, FactorJS, salesforce, Cypress, Google Lighthouse, Generate, tencent cloudbase, lint-staged, gluegun, hygen, hardhat, AWS Amplify, GitHub Actions Toolkit, @airbnb/nimbus, and many others! Please follow Enquirer's author: https://github.com/jonschlinkert

Cliffy - NodeJS Framework for Interactive CLIs