# Installing the NPM package

## Requirements

To use the WT SDK npm package, an Access Token will be needed. If you dont have a token, please contact us at <Support@sceenic.co>.

## What is the Access Token? Why do you need it?

WT SDK is a private package that is hosted on the npm registry. Only authorized users can access it. In order to access the SDK we will generate an authentication token for you. The authentication token is a hexadecimal string that gives you access to SDK.

## Before installation

In your project root folder create *.npmrc* file. This file will set the specific npm config values for this project. Insert the code snippet bellow to the .npmrc file. Replace YOUR\_ACCESS\_TOKEN with the token that was provided.`1` `//registry.npmjs.org/:_authToken=YOUR_ACCESS_TOKEN`

## Installation

`1` `npm i @sscale/wtsdk`

## Documentation

Code samples and full API description can be found [here](https://documentation.sceenic.co/sscale-confluence-watch-together-overview).

## Using the SDK

In your *.js* module add the following line of code`1` `import WT from '@sscale/wtsdk'`

WT - contains all the methods described in the documentation. For example, to create a new session, you should do the following:`1` `WT.Session.connect(settings, user)`

## Support

Need technical support? contact us at <Support@sceenic.co>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.sceenic.co/watch-together-sdk/sscale-confluence-tutorials/web/installing-the-npm-package.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
