# Introduction

## Install the SDK

```bash
yarn add @adamite/sdk
```

## Initialize the SDK

```javascript
import adamite, {
  AuthPlugin,
  DatabasePlugin,
  FunctionsPlugin,
} from "@adamite/sdk";

adamite()
  .use(AuthPlugin)
  .use(DatabasePlugin)
  .use(FunctionsPlugin)
  .initializeApp({
    url: "http://localhost:9000",
    apiKey: "your_api_key",
  });
```

Once everything is configured properly, you'll be able to see these lines logged in your client's console...

```bash
⚡ [grid.auth]	connected
⚡ [grid.functions] connected
⚡ [grid.database] connected
```
