among-us-tutorial VS builder

Compare among-us-tutorial vs builder and see what are their differences.

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
among-us-tutorial builder
2 23
9 541
- 0.6%
3.3 7.1
9 months ago 22 days ago
TypeScript Handlebars
- MIT License
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.

among-us-tutorial

Posts with mentions or reviews of among-us-tutorial. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-23.
  • Hathora – Make Web Based Multiplayer Games w/ NodeJS
    4 projects | /r/node | 23 Feb 2022
    Among Us Demo (180 LOC)
  • Show HN: Hathora – Multiplayer Game Development Made Easy
    10 projects | news.ycombinator.com | 23 Feb 2022
    Hi HN, this is Harsh, I am the developer behind Hathora. I tried making a simple multiplayer game a few years ago and, as someone with software engineering experience but no gamedev experience, I found it to be very challenging. On top of the challenges of building a single player game, you now have to constantly battle the network and latency, find ways to prevent cheating, and figure out how to make a scalable backend architecture. With Hathora my goal was to encode best practices for online multiplayer game development into a framework so developers can simply focus on implementing their game logic.

    Some technical pieces of Hathora I wanted to highlight:

    - Hathora includes a system I think of as “gRPC for games”. You define your API in Hathora’s declarative format and the framework spits out typesafe data models, clients, and server endpoint stubs across multiple programming languages (although currently only Typescript is implemented). Minimal packet sizes are achieved through a binary serialization format which includes a delta encoding feature, allowing the framework to efficiently synchronize state by sending data diffs.

    - Hathora includes a Swagger-like Prototype UI generated from the API definition. This allows you to view the game state and call server methods all in realtime, letting you interact with your backend logic without writing a single line of frontend code. Once you are happy with the backend logic, you can create a fully custom frontend using any framework/technology you’d like and just use the Hathora client to communicate with the backend.

    - By handling generic game functionality (state synchronization, messaging, persistence, etc) for you, Hathora lets you create multiplayer games with very few lines of code. For example, see chess which is implemented in under 200 lines of user code: https://github.com/hathora/hathora/tree/develop/examples/che.... I also made (a massively simplified version of) Among Us in under 200 lines of code: https://github.com/hathora/among-us-tutorial

    I am looking for developers interested in making online multiplayer games to try out Hathora and give me feedback. Additionally, if the roadmap seems interesting to you I would gladly welcome contributions: https://docs.hathora.dev/#/roadmap. I’ll be around to answer questions, let me know what you think!

builder

Posts with mentions or reviews of builder. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-15.
  • Official Stormgate Gameplay Reveal AMA Thread with Frost Giant Studios
    2 projects | /r/Stormgate | 15 Jun 2023
    We have a partnership with Hathora (https://hathora.dev/) so that our infrastructure can scale globally with high performance so we can provide the best user experience possible despite the realities of playing games over the internet. We also have some big plans around using rollback that we've covered elsewhere that we're cautiously optimistic about.
  • Game Development Resources for Intermediate Developers
    2 projects | /r/gamedev | 14 May 2023
    For multiplayer/server-less games, try Hathora
  • Show HN: Building an infinitely scalable multiplayer game
    2 projects | news.ycombinator.com | 4 May 2023
    I cofounded Hathora (https://hathora.dev/) last year and we've been working on making it easier for smaller teams and individual developers to build scalable multiplayer games. We think the serverless model is the simplest approach, allowing you to dynamically provision a new instance of your game server when users or your matchmaker requests a new session.

    We made this .io style demo to showcase this approach, and we're releasing the source code and documentation alongside with it.

  • Multiplayer hosting and scaling
    1 project | /r/gamedev | 25 Mar 2023
    Hey I'm the creator of https://hathora.dev/ which aims to provide a super simple deployment and scaling experience for session-based games. It's based on containers and can deploy any kind of game server. Check it out and see if it meets your needs!
  • Hathora: Serverless cloud platform for multiplayer games
    1 project | news.ycombinator.com | 18 Oct 2022
  • Scalable WebSocket Architecture
    2 projects | dev.to | 28 Sep 2022
    At Hathora, our mission is to make it easier for developers to build, launch, and scale multiplayer games. One of the core technologies we have built is the Hathora Coordinator, which is our fully managed multi-tenant implementation of a Stateful Router.
  • Ask HN: Any solo game developers here?
    7 projects | news.ycombinator.com | 4 Aug 2022
    Hi there! I started a company this year focused on multiplayer server infrastructure. We also built a multiplayer game framework for Typescript that has gotten 400+ stars on Github in the past few months: https://github.com/hathora/hathora

    Would love to connect and exchange notes about multiplayer development -- if you're interested, my email is on my profile.

  • Ask HN: What stack for a multiplayer board game?
    2 projects | news.ycombinator.com | 11 Jul 2022
  • How Do Video Games Stay in Sync? An Intro to the Fascinating Networking O (Cont)
    3 projects | news.ycombinator.com | 28 May 2022
    I've been working on my own realtime networking engine[0] and I think there are a few important points related to network syncing that are not mentioned in this article:

    1) Bandwidth. The users internet can only handle so much network throughput, so for fast paced games (where you're sending data to each client at a rate of 20+ frames per second) it becomes important to optimize your per-frame packet size. This means using techniques like binary encoding and delta compression (only send diffs).

    2) Server infrastructure. For client-server games, latency is going to be a function of server placement. If you only have a single server that is deployed in us-east and a bunch of users want to play with each other in Australia, their experience is going to suffer massively. Ideally you want a global network of servers and try to route users to their closest server.

    3) TCP vs UDP. Packet loss is a very real problem, and you don't want clients to be stuck waiting for old packets to be resent to them when they already have the latest data. UDP makes a major difference in gameplay when dealing with lossy networks.

    [0] https://github.com/hathora/hathora

  • Do you want or plan to make a multiplayer game? What is stopping you?
    1 project | /r/gamedev | 20 May 2022
    I built a bunch of multiplayer games in the past and am now working on a framework to try and make it easier for others to do so: https://github.com/hathora/hathora

What are some alternatives?

When comparing among-us-tutorial and builder you can also consider the following projects:

nakama - Distributed server for social and realtime games and apps.

adama-lang - A headless spreadsheet document container service.

geckos.io - 🦎 Real-time client/server communication over UDP using WebRTC and Node.js http://geckos.io

quilkin - Quilkin is a non-transparent UDP proxy specifically designed for use with large scale multiplayer dedicated game server deployments, to ensure security, access control, telemetry data, metrics and more.

Godot Card Game Framework - A framework which comes with prepared scenes and classes to kickstart your card game, as well as a powerful scripting engine to use to provide full rules enforcement.

gridia

open-saves - Open Saves is a cloud native data store for game development.

platelet - Dispatch system for emergency volunteer couriers.

matchbox - Painless peer-to-peer WebRTC networking for rust wasm (and native!)

boardgame.io - State Management and Multiplayer Networking for Turn-Based Games