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.
Naman Jain 0fce9d6bb3
feat(ts) migrate JitsiParticipant to TS
hace 6 meses
.github fix(gh) drop old stale.yml file hace 6 meses
doc Update jwt docs key generation. hace 2 años
modules feat(ts) migrate SAS to TS hace 6 meses
service feat(ts) migrate SignalingLayer to TS hace 6 meses
types feat(RTC) drop PERMISSION_PROMPT_IS_SHOWN event (#2609) hace 10 meses
.editorconfig remove all participants and tracks when leaving the room hace 9 años
.eslintignore feat(lint) update linter and apply it to TS code hace 7 meses
.eslintrc.js feat(lint) update to eslint-config-jitsi v6 hace 6 meses
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum hace 3 años
.gitignore Unify events and output single TypeScript declaration (#2407) hace 1 año
.npmrc chore(deps) strophe.js@1.6.0 hace 2 años
.nvmrc feat(build) use Node 20 hace 1 año
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 hace 8 meses
JitsiConferenceErrors.spec.ts feat: Detects different not-allowed errors. hace 1 año
JitsiConferenceErrors.ts feat(lint) update linter and apply it to TS code hace 7 meses
JitsiConferenceEventManager.js fix(ChatRoom) refactor handling of participant properties hace 11 meses
JitsiConferenceEvents.spec.ts fix(JitsiConferenceEvents) add missing export hace 1 año
JitsiConferenceEvents.ts feat(lint) update linter and apply it to TS code hace 7 meses
JitsiConnection.js feat(moderator): Make sure we resolve the sendConference promise. hace 1 año
JitsiConnectionErrors.spec.ts feat(moderator): Fires new error on connection failed for conference request failures. (#2591) hace 11 meses
JitsiConnectionErrors.ts feat(lint) update linter and apply it to TS code hace 7 meses
JitsiConnectionEvents.spec.ts feat: Introduces connection event for custom properties. (#2493) hace 1 año
JitsiConnectionEvents.ts feat(lint) update linter and apply it to TS code hace 7 meses
JitsiMediaDevices.js feat(JitsiMediaDevices) don't initialize in the constructor hace 1 año
JitsiMediaDevicesEvents.spec.ts feat(createLocalTracks) drop unused slow gUM event hace 1 año
JitsiMediaDevicesEvents.ts feat(lint) update linter and apply it to TS code hace 7 meses
JitsiMeetJS.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) hace 1 año
JitsiMeetJS.ts feat(lint) update linter and apply it to TS code hace 7 meses
JitsiParticipant.ts feat(ts) migrate JitsiParticipant to TS hace 6 meses
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed hace 8 años
JitsiTrackError.ts feat(ts) migrate JitsiTrackError to TS hace 6 meses
JitsiTrackErrors.spec.ts fix(ScreenObtainer) fix using gDM with old Electron clients hace 8 meses
JitsiTrackErrors.ts feat(lint) update linter and apply it to TS code hace 7 meses
JitsiTrackEvents.spec.ts squash: Address review comments. hace 1 año
JitsiTrackEvents.ts feat(lint) update linter and apply it to TS code hace 7 meses
JitsiTranscriptionStatus.spec.ts fix(JitsiTranscriptionStatus): the status values are upper case hace 1 año
JitsiTranscriptionStatus.ts feat(lint) update linter and apply it to TS code hace 7 meses
LICENSE initial commit hace 9 años
README.md fix(doc) update building hace 3 años
SECURITY.md Create SECURITY.md hace 5 años
TypeScript.md feat(doc) add plan for the TypeScript conversion process hace 3 años
authenticateAndUpgradeRole.js fix(breakout): Clear up request sent on authentication. hace 11 meses
globals.d.ts feat(ts) migrate LiteModeContext to TS hace 6 meses
index.js feat(lint) update linter and apply it to TS code hace 7 meses
karma.conf.js feat(build) embed jquery slim hace 3 años
package-lock.json feat(ts) migrate JitsiParticipant to TS hace 6 meses
package.json feat(ts) migrate JitsiParticipant to TS hace 6 meses
tsconfig.json fix(ts) move dts file to types/ hace 1 año
webpack-shared-config.js feat(statistics): add pre call test API hace 1 año
webpack.config.js feat(lint) update linter and apply it to TS code hace 7 meses

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.