Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jitsi/lib-jitsi-meet
A low-level JS video API that allows adding a completely custom video experience to web apps.
https://github.com/jitsi/lib-jitsi-meet
Last synced: 13 days ago
JSON representation
A low-level JS video API that allows adding a completely custom video experience to web apps.
- Host: GitHub
- URL: https://github.com/jitsi/lib-jitsi-meet
- Owner: jitsi
- License: apache-2.0
- Created: 2016-01-27T22:44:09.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-26T12:00:58.000Z (16 days ago)
- Last Synced: 2024-10-27T08:58:12.583Z (15 days ago)
- Language: JavaScript
- Homepage:
- Size: 16.1 MB
- Stars: 1,335
- Watchers: 60
- Forks: 1,113
- Open Issues: 142
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Jitsi Meet API library
You can use Jitsi Meet API to create Jitsi Meet video conferences with a custom GUI.
## Installation
- [Installation guide](doc/API.md#installation)
- [Checkout the example](doc/example)## Building the sources
NOTE: you need Node.js >= 12 and npm >= 7
To build the library, just type:
```
npm install
npm run build
```
To lint:
```
npm run lint
```
and to run unit tests:
```
npm test
```
if you need to rebuild lib-jitsi-meet.min.js
```
npm run build
```Both linting and units will also be done by a pre-commit hook.