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.
Jaya Allamsetty f16cadceca squash: Address review comments. пре 1 година
.github fix(ci) update action versions пре 2 година
doc Update jwt docs key generation. пре 2 година
modules squash: Address review comments. пре 1 година
patches fix: Downgrade strophe.js to fix react-native. пре 2 година
service feat(visitors): Checks for visitors support per room. пре 1 година
types fix(JitsiTrack): Remove func that's no longer used. пре 1 година
.editorconfig remove all participants and tracks when leaving the room пре 9 година
.eslintignore feat: Drops external connect optimization. пре 2 година
.eslintrc.js chore(deps) update Babel and ESLint to the latest versions пре 3 година
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum пре 3 година
.gitignore Unify events and output single TypeScript declaration (#2407) пре 1 година
.npmrc chore(deps) strophe.js@1.6.0 пре 2 година
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 година
JitsiConferenceErrors.spec.ts feat: Moves redirected event to connection events. пре 2 година
JitsiConferenceErrors.ts feat: Moves redirected event to connection events. пре 2 година
JitsiConferenceEventManager.js squash: Address review comments. пре 1 година
JitsiConferenceEvents.spec.ts fix(codec-selection): Include visitor codecs. Include visitor codecs published by Jicofo while calculating the intersection set for the conference. пре 1 година
JitsiConferenceEvents.ts fix(codec-selection): Include visitor codecs. Include visitor codecs published by Jicofo while calculating the intersection set for the conference. пре 1 година
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 година
JitsiConnectionErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete пре 3 година
JitsiConnectionErrors.ts feat(ts) TypeScript enum for JitsiConnectionErrors пре 3 година
JitsiConnectionEvents.spec.ts feat: Introduces connection event for custom properties. (#2493) пре 1 година
JitsiConnectionEvents.ts feat: Introduces connection event for custom properties. (#2493) пре 1 година
JitsiMediaDevices.js Unify events and output single TypeScript declaration (#2407) пре 1 година
JitsiMediaDevicesEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete пре 3 година
JitsiMediaDevicesEvents.ts feat(ts) TypeScript enum for JitsiMediaDevicesEvents пре 3 година
JitsiMeetJS.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) пре 1 година
JitsiMeetJS.ts 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 година
JitsiParticipant.js fix(types): fix last few types (#2417) пре 1 година
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed пре 8 година
JitsiTrackError.js chore(lint) tame the new linter пре 3 година
JitsiTrackErrors.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) пре 1 година
JitsiTrackErrors.ts feat(RTC): add support for creating non-standard tracks (#2409) пре 1 година
JitsiTrackEvents.spec.ts squash: Address review comments. пре 1 година
JitsiTrackEvents.ts squash: Address review comments. пре 1 година
JitsiTranscriptionStatus.spec.ts fix(ts) clean-up TS tests where conversion is complete пре 3 година
JitsiTranscriptionStatus.ts feat(ts) TypeScript enum for JitsiTranscriptionStatus пре 3 година
LICENSE initial commit пре 9 година
README.md fix(doc) update building пре 3 година
SECURITY.md Create SECURITY.md пре 5 година
TypeScript.md feat(doc) add plan for the TypeScript conversion process пре 3 година
authenticateAndUpgradeRole.js fix(types): fix last few types (#2417) пре 1 година
globals.d.ts feat(ts) migrate JitsiMeetJS to TS пре 3 година
index.js fix(build) don't pollute global state in ESM build пре 3 година
karma.conf.js feat(build) embed jquery slim пре 3 година
package-lock.json fix(watchrtc) fix consecutive call issue пре 1 година
package.json fix(watchrtc) fix consecutive call issue пре 1 година
tsconfig.json fix(ts) move dts file to types/ пре 1 година
webpack-shared-config.js feat(build) remove export from build script пре 1 година
webpack.config.js feat(ts) introduce TypeScript пре 3 година

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.