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

# Integrate Node SDK

> Install & Initialize SuprSend NodeJS SDK using your workspace credentials for sending notifications.

## Installation

<CodeGroup>
  ```shell npm theme={"system"}
  npm install @suprsend/node-sdk@latest
  ```

  ```shell yarn theme={"system"}
  yarn add @suprsend/node-sdk@latest
  ```
</CodeGroup>

## Initialization

<CodeGroup>
  ```javascript javascript theme={"system"}
  const {Suprsend} = require("@suprsend/node-sdk");

  const supr_client = new Suprsend("WORKSPACE KEY", "WORKSPACE SECRET");
  ```
</CodeGroup>

Replace `WORKSPACE KEY` and `WORKSPACE SECRET` with your workspace values. You will find them on SuprSend Dashboard Developers -> API Keys page.

***
