# How to update Jitsi Meet Library?

## Project's package.json

We are using the official javascript jitsi meet library:

`https://github.com/jitsi/lib-jitsi-meet`

To use the library as a package we need to refer it to the release gzip, as they do in their jitsi-meet react application

## How do we update the library?

Replacing the link in the [package.json](https://github.com/Stooa/Stooa/blob/main/frontend/package.json) of the stooa's `frontend` app.

We use as reference the version used in [jitsi-meet](https://github.com/jitsi/jitsi-meet) which is the most stable version and used on their production web app.

**Where to get the link?** You can copy it from the [jitsi-meet](https://github.com/jitsi/jitsi-meet/blob/master/package.json) `package.json` or head to [lib-jitsi-meet repo releases](https://github.com/jitsi/lib-jitsi-meet/releases) and copy the .tgz link from the "Assets" in the release.

Link should look like this:\
<https://github.com/jitsi/lib-jitsi-meet/releases/download/v1535.0.0%2Be6263e7c/lib-jitsi-meet.tgz>

```json
"lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1529.0.0%2B669dbcbb/lib-jitsi-meet.tgz",
```


---

# 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://docs.stooa.com/documentation/development/update-jitsi-lib.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.
