npm.io
6.1.0 • Published 3d ago

com.beamable

Licence
ISC
Version
6.1.0
Deps
6
Size
38.7 MB
Vulns
0
Weekly
0
Stars
10

Beamable Docs

Beamable C# SDK Monorepo

This repository contains the Beamable Unity SDK, the Beamable CLI, microservice runtime code, templates, and developer tooling. The repo is intended for reference and internal development workflows. However, this is not an open-source distribution. Use of this code in products is only permitted through approved Beamable distributions such as the Unity SDK, the CLI NuGet tool, the Web SDK NuGet package, or the Unreal SDK.

What lives here

Unity SDK Code

The Unity SDK code is available under the /client/Packages folder. The SDK is distributed as a single UPM package, com.beamable. The /client folder is a Unity project used for internal testing, but nothing in /client/Assets is included in any Unity SDK release.

How to test changes in this project

To test any changes to the Unity SDK, you can open the /client Unity project in Unity 2021 or greater.

Dotnet Code (CLI, Microservices, Common)

The CLI, Microservice runtime, and shared common types all live under the /cli folder and are developed using the /cli/cli.sln solution. The solution references .csproj files throughout the codebase. The CLI-specific commands and tooling live under /cli/cli, while the microservice runtime and related projects live under /microservice. Both reference the shared common project.

How to test changes in this project

To test changed made to this project you can run the dev.sh script and use it in your local environment by setting the .config/dotnet-tools.json to use the version generated from the script, usually starts with 0.0.123.

Beamable.Common NuGet Package

The canonical source for the shared common project lives in /cli/beamable.common. This .NET Standard 2.0 project contains most of the Beamable base types (dependency injection, promise library, core components) used across the CLI, Microservice runtime, and Unity SDK. It is published as Beamable.Common on NuGet. The folder client/Packages/com.beamable/Common is a copy of this project used for Unity package consumption.

Unity SDK Installer Code

The Unity SDK Installer is available under the /client_installer directory. This directory contains a Unity project with code for the Beamable Installer and code for packaging that installer into a .unitypackage.

Web SDK

The Web SDK is a TypeScript library under the /web folder, built for both Node.js and browser environments. It is distributed as beamable-sdk on npm and includes samples (e.g., the WordWiz Telegram Mini App demo). See the Web SDK README for installation and usage.

Terraform

The /terraform folder contains Terraform manifests for infrastructure managed by CI workflows. It includes reusable modules (e.g., S3) and environment configurations. The CI workflow at .github/workflows/runTerraform.yml runs terraform init/plan/apply against the selected environment. See the Terraform README for local usage instructions and prerequisites.

Notes:

  • The CLI-specific commands and tooling live under cli/cli and reference the shared Common project.
  • When developing locally you can either consume the published NuGet package or reference the local project directly (see cli/beamable.common/DOTNET-CODE-README.md and cli/DOTNET-CODE-README.md for details).

Quickstart — developer flow

Prereqs: dotnet (8+), and a POSIX shell for the provided scripts (or use WSL on Windows). docker is only required when you plan to deploy, run microservice integration/unit tests, or run containerized flows for microservice development.

  • Repo-level dev scripts
  • ./setup.sh (run once) — prepares the local dev environment and builds helper tooling such as the OTEL collector used by microservices during development.
  • ./dev.sh — builds and publishes local packages into a local NuGet feed consumed by downstream projects (used for fast iteration across CLI, microservices, and Unity SDK).
  • Run the repo-level scripts from the repository root. See cli/ README for how to run CLI-specific projects after running the scripts.
Web local dev (Portal Toolkit & Web SDK)

Prereqs: Node.js 22+, pnpm, and Docker. Full guide: web/LOCAL_DEV.md.

Both packages are published to a local Verdaccio registry as version 0.0.123 — the same "developer build" sentinel the .NET packages use (dev.sh publishes 0.0.123.<N>). Any package at that version is treated as a local-dev build: the Portal recognises it and loads it from the local CDN with no configuration.

  • ./setup-web.sh (run once) — starts the local Verdaccio registry and local-unpkg CDN from portal-localdev/, wiping anything previously published.
  • ./dev-web.sh — builds and publishes both packages, then refreshes the projects that consume them. Set BEAM_WORKSPACE=/path/to/repo-with-your-extensions. Add --build to reinstall the packages' dependencies first, --only sdk|toolkit to rebuild just one (both are still published — their versions have to match).
  • ./teardown-web.sh — stops the local stack and deletes the published packages.

Because the version never changes, the pin is a one-time edit rather than per-build — but keeping the build fresh does mean forcing a reinstall, which beam web use handles.

That pin lives in your extensions' package.json and lock files — tracked files. Revert at the end of a session: git restore '**/package.json' '**/package-lock.json'.

The scripts are thin wrappers that dotnet run the CLI, so there is one implementation and it behaves the same on Windows, macOS and Linux. The commands they call can also be used directly:

Command Purpose
beam web publish Build + publish both packages as 0.0.123 (--only sdk|toolkit to rebuild one)
beam web use Pin 0.0.123 in the extensions under a directory and force-refresh the install
beam web status Is the registry/CDN up, what's published, and when it was published
beam web reset Wipe the registry and restart it empty
beam web stop Stop the registry (--wipe to also delete packages)

beam local init --with-web-registry wires all of this into beam local up: the registry starts with the rest of the local stack, and beam local up --build also publishes the packages and refreshes the extensions before running them. See web/LOCAL_DEV.md.

If the Portal's .env.local has VITE_INJECT_HOST_SDK=true, comment it out — that's a different approach and it takes precedence over the local CDN.

Running the full local stack on a fresh machine

beam local setup provisions everything beam local up needs — a private, pinned toolchain (JDK 8, Maven, the .NET SDK, Node), the gitignored BeamableBackend config files, the portal's gitignored .env.local, and a check of the AWS prerequisites. It works the same on macOS, Windows and Linux, and installs nothing system-wide.

On a machine that has never run the stack:

  1. Install the .NET SDK, then dotnet tool install -g Beamable.Tools.
  2. Install Docker Desktop and start it — setup cannot install Docker, because it needs administrator rights.
  3. Clone BeamableAPI, BeamableBackend, BeamableProduct and the portal as siblings.
  4. Then:
beam local setup                # installs the toolchain; needs no .beamable workspace
beam local init                 # writes the manifest and adopts that toolchain automatically
beam local validate --with-aws
beam local up --build

setup comes first: it installs the JDK, and init picks it up rather than asking you for one.

beam local validate reports each dependency's sourcetoolchain (pinned) or system (whatever this machine happens to have) — which is how a Maven running under an IDE's JDK 21, or a Node major the portal was never built against, gets caught before it produces a confusing build failure.

AWS access is required; there is no LocalStack in this stack. The Scala auth service reads its JWT signing key from AWS Secrets Manager at runtime, so without credentials the stack comes up healthy and nothing can log in. beam local setup --only aws checks this and prints what an AWS administrator needs to do.

Full reference: cli/cli/Docs/LocalStack/local-setup.md.

Documentation and help

Contributing

This repository is not open for external code contributions. We welcome feedback via GitHub Discussions or Issues:

License

All source in this repository is licensed under the MS-RSL license: https://referencesource.microsoft.com/license.html

You may use the code for reference only; to ship a product use Beamable's official distributions (UPM, NuGet, Dockerhub).

Keywords