Reference
Arcane.protocol
Exact native bridge protocol identifier, currently "arcane/1".
This focused page is derived from the mechanically checked full member inventory.
Syntax
Arcane.protocol
Member kind
Value
Description
Exact native bridge protocol identifier, currently "arcane/1".
Overview
Arcane.protocol is the immutable wire-protocol identifier used by the current
renderer bridge. Its value is currently the string "arcane/1". It identifies
the message format; it does not establish connection health, host trust,
application admission, or feature availability.
When to use
Use this value in diagnostics or compatibility checks that need to distinguish the Arcane message contract. Do not use it as a capability or security decision.
Example
const protocol = globalThis.Arcane?.protocol;
if (protocol !== 'arcane/1') {
throw new Error('This document does not expose the expected Arcane protocol.');
}