How-to

Verify the installation

Applies to: .NET SDK, Node.js SDK Last updated: 2026-06-11

Goal

Confirm the SDK is installed correctly and the agent identity is activated.

.NET

using HexaEight.Bridge;

var client = new Client();
Console.WriteLine($"Identity:    {client.Name}");
Console.WriteLine($"SDK version: {Client.BridgeVersion}");
Console.WriteLine($"TFM:         {Client.TargetFramework}");

Node.js

import { HexaEight } from '@hexaeight/sdk';
const he = await HexaEight.connect();
console.log(`Identity: ${he.name}`);

Expected output

Identity:    web0-bliss-cyan-radar84
SDK version: 1.0.0.0
TFM:         .NETCoreApp,Version=v10.0

If you see an error

ErrorLikely cause
HEXAEIGHT_RESOURCENAME is not setenv-file missing from current directory
hexaeight.mac not foundActivation incomplete
Could not find Casbin.NETPackage restore did not complete

See also