Arcane OS Docs Development only

Reference

core.ready

The Core has installed its input handlers and is ready to accept requests.

  • Reference

This focused page is derived from the mechanically checked full event inventory.

Subscribe

const unsubscribe = Arcane.events.on('core.ready', function handleCoreReady(data) {
    // Read only the documented fields from data here.
    console.info('Received core.ready.');
});

// Stop listening when this page no longer needs the event.
function stopListeningForCoreReady() {
    unsubscribe();
}

globalThis.addEventListener('pagehide', stopListeningForCoreReady, {once: true});

Delivery

Durable completion. The first payload is frozen; a late when() subscriber receives an asynchronous replay.

Hosts

Core-backed Microsoft NT, Linux, and development HTTP hosts.

When it fires

The Core has installed its input handlers and is ready to accept requests.

Event data

pid is the Core process ID; version is its Arcane version; app is the active application mode; platform is the public operating-system snapshot; elevated reports elevated execution; simulation reports simulation mode.

Reference group

Events

Repository and reviewed source access