Downloads
Install the Jaina SDKs, CLI, and code generator directly while registry publishing is finalized.
Direct downloads
The Jaina packages are on their way to npm, PyPI, and NuGet. Until that is finalized, every package is available right here as a versioned, prebuilt artifact. Each command below installs the real, published-identical build. No registry account is required.
Current version: 0.2.0.
TypeScript / JavaScript SDK
Package: @jaina/sdk
npm install https://jaina.dev/downloads/npm/jaina-sdk-0.2.0.tgz
CLI
Package: jaina-cli
npm install -g https://jaina.dev/downloads/npm/jaina-cli-0.2.0.tgz
Code generator
Package: @jaina/codegen
npm install https://jaina.dev/downloads/npm/jaina-codegen-0.2.0.tgz
Python SDK
Package: jaina-sdk
pip install https://jaina.dev/downloads/pypi/jaina_sdk-0.2.0-py3-none-any.whl
C# / .NET SDK
Package: Jaina.Client (targets netstandard2.0, Unity compatible)
dotnet add package reads from a feed, so download the package and add the containing
folder as a local source:
curl -O https://jaina.dev/downloads/nuget/Jaina.Client.0.2.0.nupkg
dotnet add package Jaina.Client --version 0.2.0 --source .
For Unity, the .nupkg is a zip archive: extract lib/netstandard2.0/Jaina.Client.dll
into Assets/Plugins/ and set the meta to Any Platform.
Notes
- These are the same builds that will publish to the registries, so your code does not
change when you later switch to
npm install @jaina/sdk,pip install jaina-sdk, ordotnet add package Jaina.Client. - The URLs are version-pinned. When a new version ships, this page updates with the new links.
- Prefer the registries once they are live: they give you semver ranges and automatic update tooling that a direct URL cannot.
