> ## Documentation Index
> Fetch the complete documentation index at: https://krono.fabianpiper.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Connecting

> Read-only property checking if status is connecting.

## Import

```ts theme={null}
import { Orderbook } from '@krono/core'
```

## Usage

Convenience boolean getter. Useful for showing loading spinners.

```ts theme={null}
if (orderbook.connecting) {
  showLoader();
}
```

## Type

```ts theme={null}
boolean
```
