> For the complete documentation index, see [llms.txt](https://docs.rabet.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rabet.io/getting-started.md).

# Getting Started

Once Rabet is installed and running, every new tab you open has a `window.rabet`object available in the developer console. This is how your website will interact with Rabet.

### Browser Detection

To verify if the browser is running Rabet, run the following code in your developer console:

```javascript
if (window.rabet) {
  console.log('Rabet is installed!');
}
```

You can review the full API here [API refrence](/api/api-refrence.md)

### Connecting to Rabet

You should **only** initiate a connection request in response to direct user action, such as clicking a button. You should **always** disable the "connect" button while the connection request is pending. You should **never** initiate a connection request on page load.
