Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
dependabot[bot] e244421a8e chore(deps-dev): bump webpack from 5.76.0 to 5.98.0 il y a 8 mois
.github fix(gh) drop old stale.yml file il y a 8 mois
doc Update jwt docs key generation. il y a 2 ans
modules feat(ts) migrate RecordingManager to TS il y a 8 mois
service feat(lint) update linter and apply it to TS code il y a 8 mois
types feat(RTC) drop PERMISSION_PROMPT_IS_SHOWN event (#2609) il y a 11 mois
.editorconfig remove all participants and tracks when leaving the room il y a 9 ans
.eslintignore feat(lint) update linter and apply it to TS code il y a 8 mois
.eslintrc.js feat(lint) update to eslint-config-jitsi v6 il y a 8 mois
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum il y a 3 ans
.gitignore Unify events and output single TypeScript declaration (#2407) il y a 2 ans
.npmrc chore(deps) strophe.js@1.6.0 il y a 2 ans
.nvmrc feat(build) use Node 20 il y a 1 an
JitsiConference.js feat(JitsiConference) Allow adding multiple tracks to the conference. This should be supported by the backend. This limitation was added here only because of track synchronization issues between JM and LJM. The support is added behind testing.allowMultipleTracks config.js setting Fixes https://github.com/jitsi/lib-jitsi-meet/issues/2205 il y a 10 mois
JitsiConferenceErrors.spec.ts feat: Detects different not-allowed errors. il y a 1 an
JitsiConferenceErrors.ts feat(lint) update linter and apply it to TS code il y a 8 mois
JitsiConferenceEventManager.js fix(ChatRoom) refactor handling of participant properties il y a 1 an
JitsiConferenceEvents.spec.ts fix(JitsiConferenceEvents) add missing export il y a 1 an
JitsiConferenceEvents.ts feat(lint) update linter and apply it to TS code il y a 8 mois
JitsiConnection.js feat(moderator): Make sure we resolve the sendConference promise. il y a 1 an
JitsiConnectionErrors.spec.ts feat(moderator): Fires new error on connection failed for conference request failures. (#2591) il y a 1 an
JitsiConnectionErrors.ts feat(lint) update linter and apply it to TS code il y a 8 mois
JitsiConnectionEvents.spec.ts feat: Introduces connection event for custom properties. (#2493) il y a 1 an
JitsiConnectionEvents.ts feat(lint) update linter and apply it to TS code il y a 8 mois
JitsiMediaDevices.js feat(JitsiMediaDevices) don't initialize in the constructor il y a 1 an
JitsiMediaDevicesEvents.spec.ts feat(createLocalTracks) drop unused slow gUM event il y a 1 an
JitsiMediaDevicesEvents.ts feat(lint) update linter and apply it to TS code il y a 8 mois
JitsiMeetJS.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) il y a 2 ans
JitsiMeetJS.ts feat(lint) update linter and apply it to TS code il y a 8 mois
JitsiParticipant.js feat(JitsiParticipant) use a Map for properties, rather than an object il y a 1 an
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed il y a 9 ans
JitsiTrackError.js fix(ScreenObtainer) fix using gDM with old Electron clients il y a 9 mois
JitsiTrackErrors.spec.ts fix(ScreenObtainer) fix using gDM with old Electron clients il y a 9 mois
JitsiTrackErrors.ts feat(lint) update linter and apply it to TS code il y a 8 mois
JitsiTrackEvents.spec.ts squash: Address review comments. il y a 1 an
JitsiTrackEvents.ts feat(lint) update linter and apply it to TS code il y a 8 mois
JitsiTranscriptionStatus.spec.ts fix(JitsiTranscriptionStatus): the status values are upper case il y a 1 an
JitsiTranscriptionStatus.ts feat(lint) update linter and apply it to TS code il y a 8 mois
LICENSE initial commit il y a 10 ans
README.md fix(doc) update building il y a 3 ans
SECURITY.md Create SECURITY.md il y a 5 ans
TypeScript.md feat(doc) add plan for the TypeScript conversion process il y a 3 ans
authenticateAndUpgradeRole.js fix(breakout): Clear up request sent on authentication. il y a 1 an
globals.d.ts feat(ts) migrate JitsiMeetJS to TS il y a 3 ans
index.js feat(lint) update linter and apply it to TS code il y a 8 mois
karma.conf.js feat(build) embed jquery slim il y a 3 ans
package-lock.json chore(deps-dev): bump webpack from 5.76.0 to 5.98.0 il y a 8 mois
package.json chore(deps-dev): bump webpack from 5.76.0 to 5.98.0 il y a 8 mois
tsconfig.json fix(ts) move dts file to types/ il y a 1 an
webpack-shared-config.js feat(statistics): add pre call test API il y a 1 an
webpack.config.js feat(lint) update linter and apply it to TS code il y a 8 mois

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.