You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Saúl Ibarra Corretgé 0d8b0b83d8 fix(xmpp) catch errors in XMPP session resumption 1 year ago
.github fix(ci) update action versions 2 years ago
doc Update jwt docs key generation. 2 years ago
modules fix(xmpp) catch errors in XMPP session resumption 1 year ago
patches fix: Downgrade strophe.js to fix react-native. 2 years ago
service feat(visitors): Checks for visitors support per room. 1 year ago
types Expose `track.conference` field in types 1 year ago
.editorconfig remove all participants and tracks when leaving the room 9 years ago
.eslintignore feat: Drops external connect optimization. 2 years ago
.eslintrc.js chore(deps) update Babel and ESLint to the latest versions 3 years ago
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum 3 years ago
.gitignore Unify events and output single TypeScript declaration (#2407) 1 year ago
.npmrc chore(deps) strophe.js@1.6.0 2 years ago
JitsiConference.js fix(ssrc-rewriting): Fire track removed/added instead of owner changed. When an existing SSRC for a remote track gets re-mapped from one source to another, fire a TRACK_REMOVED event followed by TRACK_ADDED event instead of TRACK_OWNER_CHANGED event. This should simplify the application logic for track handling. 1 year ago
JitsiConferenceErrors.spec.ts feat: Detects different not-allowed errors. 1 year ago
JitsiConferenceErrors.ts feat: Detects different not-allowed errors. 1 year ago
JitsiConferenceEventManager.js fix(ssrc-rewriting): Check for track owner/sourceName before calling TRACK_OWNER_SET. When the bridge WS is re-established, jvb sends the full map of audio and video sources. Without the check, the library will end up firing TRACK_REMOVED and TRACK_ADDED for all the exiting tracks. Also, process audio and video source maps only on JVB sessions. 1 year ago
JitsiConferenceEvents.spec.ts fix(codec-selection): Include visitor codecs. Include visitor codecs published by Jicofo while calculating the intersection set for the conference. 1 year ago
JitsiConferenceEvents.ts fix(codec-selection): Include visitor codecs. Include visitor codecs published by Jicofo while calculating the intersection set for the conference. 1 year ago
JitsiConnection.js fix(flags): Init flags before creating XMPP conn. This allows us to set defaults through jitsi-meet. Also remove undocumented setting enableJoinAsVisitor that is no longer needed. 1 year ago
JitsiConnectionErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 years ago
JitsiConnectionErrors.ts feat(ts) TypeScript enum for JitsiConnectionErrors 3 years ago
JitsiConnectionEvents.spec.ts feat: Introduces connection event for custom properties. (#2493) 1 year ago
JitsiConnectionEvents.ts feat: Introduces connection event for custom properties. (#2493) 1 year ago
JitsiMediaDevices.js Unify events and output single TypeScript declaration (#2407) 1 year ago
JitsiMediaDevicesEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 years ago
JitsiMediaDevicesEvents.ts feat(ts) TypeScript enum for JitsiMediaDevicesEvents 3 years ago
JitsiMeetJS.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) 1 year ago
JitsiMeetJS.ts feat: Detects different not-allowed errors. 1 year ago
JitsiParticipant.js fix(types): fix last few types (#2417) 1 year ago
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed 8 years ago
JitsiTrackError.js chore(lint) tame the new linter 3 years ago
JitsiTrackErrors.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) 1 year ago
JitsiTrackErrors.ts feat(RTC): add support for creating non-standard tracks (#2409) 1 year ago
JitsiTrackEvents.spec.ts squash: Address review comments. 1 year ago
JitsiTrackEvents.ts squash: Address review comments. 1 year ago
JitsiTranscriptionStatus.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 years ago
JitsiTranscriptionStatus.ts feat(ts) TypeScript enum for JitsiTranscriptionStatus 3 years ago
LICENSE initial commit 9 years ago
README.md fix(doc) update building 3 years ago
SECURITY.md Create SECURITY.md 5 years ago
TypeScript.md feat(doc) add plan for the TypeScript conversion process 3 years ago
authenticateAndUpgradeRole.js fix(types): fix last few types (#2417) 1 year ago
globals.d.ts feat(ts) migrate JitsiMeetJS to TS 3 years ago
index.js fix(build) don't pollute global state in ESM build 3 years ago
karma.conf.js feat(build) embed jquery slim 3 years ago
package-lock.json fix(watchrtc) fix consecutive call issue 1 year ago
package.json fix(watchrtc) fix consecutive call issue 1 year ago
tsconfig.json fix(ts) move dts file to types/ 1 year ago
webpack-shared-config.js feat(build) remove export from build script 1 year ago
webpack.config.js feat(ts) introduce TypeScript 3 years ago

README.md

Jitsi Meet API library

You can use Jitsi Meet API to create Jitsi Meet video conferences with a custom GUI.

Installation

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.