Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Saúl Ibarra Corretgé 0d8b0b83d8 fix(xmpp) catch errors in XMPP session resumption vor 1 Jahr
.github fix(ci) update action versions vor 2 Jahren
doc Update jwt docs key generation. vor 2 Jahren
modules fix(xmpp) catch errors in XMPP session resumption vor 1 Jahr
patches fix: Downgrade strophe.js to fix react-native. vor 2 Jahren
service feat(visitors): Checks for visitors support per room. vor 1 Jahr
types Expose `track.conference` field in types vor 1 Jahr
.editorconfig remove all participants and tracks when leaving the room vor 9 Jahren
.eslintignore feat: Drops external connect optimization. vor 2 Jahren
.eslintrc.js chore(deps) update Babel and ESLint to the latest versions vor 3 Jahren
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum vor 3 Jahren
.gitignore Unify events and output single TypeScript declaration (#2407) vor 1 Jahr
.npmrc chore(deps) strophe.js@1.6.0 vor 2 Jahren
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. vor 1 Jahr
JitsiConferenceErrors.spec.ts feat: Detects different not-allowed errors. vor 1 Jahr
JitsiConferenceErrors.ts feat: Detects different not-allowed errors. vor 1 Jahr
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. vor 1 Jahr
JitsiConferenceEvents.spec.ts fix(codec-selection): Include visitor codecs. Include visitor codecs published by Jicofo while calculating the intersection set for the conference. vor 1 Jahr
JitsiConferenceEvents.ts fix(codec-selection): Include visitor codecs. Include visitor codecs published by Jicofo while calculating the intersection set for the conference. vor 1 Jahr
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. vor 1 Jahr
JitsiConnectionErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete vor 3 Jahren
JitsiConnectionErrors.ts feat(ts) TypeScript enum for JitsiConnectionErrors vor 3 Jahren
JitsiConnectionEvents.spec.ts feat: Introduces connection event for custom properties. (#2493) vor 1 Jahr
JitsiConnectionEvents.ts feat: Introduces connection event for custom properties. (#2493) vor 1 Jahr
JitsiMediaDevices.js Unify events and output single TypeScript declaration (#2407) vor 1 Jahr
JitsiMediaDevicesEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete vor 3 Jahren
JitsiMediaDevicesEvents.ts feat(ts) TypeScript enum for JitsiMediaDevicesEvents vor 3 Jahren
JitsiMeetJS.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) vor 1 Jahr
JitsiMeetJS.ts feat: Detects different not-allowed errors. vor 1 Jahr
JitsiParticipant.js fix(types): fix last few types (#2417) vor 1 Jahr
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed vor 8 Jahren
JitsiTrackError.js chore(lint) tame the new linter vor 3 Jahren
JitsiTrackErrors.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) vor 1 Jahr
JitsiTrackErrors.ts feat(RTC): add support for creating non-standard tracks (#2409) vor 1 Jahr
JitsiTrackEvents.spec.ts squash: Address review comments. vor 1 Jahr
JitsiTrackEvents.ts squash: Address review comments. vor 1 Jahr
JitsiTranscriptionStatus.spec.ts fix(ts) clean-up TS tests where conversion is complete vor 3 Jahren
JitsiTranscriptionStatus.ts feat(ts) TypeScript enum for JitsiTranscriptionStatus vor 3 Jahren
LICENSE initial commit vor 9 Jahren
README.md fix(doc) update building vor 3 Jahren
SECURITY.md Create SECURITY.md vor 5 Jahren
TypeScript.md feat(doc) add plan for the TypeScript conversion process vor 3 Jahren
authenticateAndUpgradeRole.js fix(types): fix last few types (#2417) vor 1 Jahr
globals.d.ts feat(ts) migrate JitsiMeetJS to TS vor 3 Jahren
index.js fix(build) don't pollute global state in ESM build vor 3 Jahren
karma.conf.js feat(build) embed jquery slim vor 3 Jahren
package-lock.json fix(watchrtc) fix consecutive call issue vor 1 Jahr
package.json fix(watchrtc) fix consecutive call issue vor 1 Jahr
tsconfig.json fix(ts) move dts file to types/ vor 1 Jahr
webpack-shared-config.js feat(build) remove export from build script vor 1 Jahr
webpack.config.js feat(ts) introduce TypeScript vor 3 Jahren

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.