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
пре 6 месеци
.github fix(gh) drop old stale.yml file пре 6 месеци
doc Update jwt docs key generation. пре 2 година
modules feat(ts) migrate SAS to TS пре 6 месеци
service feat(ts) migrate SignalingLayer to TS пре 6 месеци
types feat(RTC) drop PERMISSION_PROMPT_IS_SHOWN event (#2609) пре 10 месеци
.editorconfig remove all participants and tracks when leaving the room пре 9 година
.eslintignore feat(lint) update linter and apply it to TS code пре 7 месеци
.eslintrc.js feat(lint) update to eslint-config-jitsi v6 пре 6 месеци
.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 година
.nvmrc feat(build) use Node 20 пре 1 година
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 пре 8 месеци
JitsiConferenceErrors.spec.ts feat: Detects different not-allowed errors. пре 1 година
JitsiConferenceErrors.ts feat(lint) update linter and apply it to TS code пре 7 месеци
JitsiConferenceEventManager.js fix(ChatRoom) refactor handling of participant properties пре 11 месеци
JitsiConferenceEvents.spec.ts fix(JitsiConferenceEvents) add missing export пре 1 година
JitsiConferenceEvents.ts feat(lint) update linter and apply it to TS code пре 7 месеци
JitsiConnection.js feat(moderator): Make sure we resolve the sendConference promise. пре 1 година
JitsiConnectionErrors.spec.ts feat(moderator): Fires new error on connection failed for conference request failures. (#2591) пре 11 месеци
JitsiConnectionErrors.ts feat(lint) update linter and apply it to TS code пре 7 месеци
JitsiConnectionEvents.spec.ts feat: Introduces connection event for custom properties. (#2493) пре 1 година
JitsiConnectionEvents.ts feat(lint) update linter and apply it to TS code пре 7 месеци
JitsiMediaDevices.js feat(JitsiMediaDevices) don't initialize in the constructor пре 1 година
JitsiMediaDevicesEvents.spec.ts feat(createLocalTracks) drop unused slow gUM event пре 1 година
JitsiMediaDevicesEvents.ts feat(lint) update linter and apply it to TS code пре 7 месеци
JitsiMeetJS.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) пре 1 година
JitsiMeetJS.ts feat(lint) update linter and apply it to TS code пре 7 месеци
JitsiParticipant.ts feat(ts) migrate JitsiParticipant to TS пре 6 месеци
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed пре 8 година
JitsiTrackError.ts feat(ts) migrate JitsiTrackError to TS пре 6 месеци
JitsiTrackErrors.spec.ts fix(ScreenObtainer) fix using gDM with old Electron clients пре 8 месеци
JitsiTrackErrors.ts feat(lint) update linter and apply it to TS code пре 7 месеци
JitsiTrackEvents.spec.ts squash: Address review comments. пре 1 година
JitsiTrackEvents.ts feat(lint) update linter and apply it to TS code пре 7 месеци
JitsiTranscriptionStatus.spec.ts fix(JitsiTranscriptionStatus): the status values are upper case пре 1 година
JitsiTranscriptionStatus.ts feat(lint) update linter and apply it to TS code пре 7 месеци
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(breakout): Clear up request sent on authentication. пре 11 месеци
globals.d.ts feat(ts) migrate LiteModeContext to TS пре 6 месеци
index.js feat(lint) update linter and apply it to TS code пре 7 месеци
karma.conf.js feat(build) embed jquery slim пре 3 година
package-lock.json feat(ts) migrate JitsiParticipant to TS пре 6 месеци
package.json feat(ts) migrate JitsiParticipant to TS пре 6 месеци
tsconfig.json fix(ts) move dts file to types/ пре 1 година
webpack-shared-config.js feat(statistics): add pre call test API пре 1 година
webpack.config.js feat(lint) update linter and apply it to TS code пре 7 месеци

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.