modified lib-jitsi-meet dev repo
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Jaya Allamsetty fa916d41ed fix(BridgeChannel): re-send constraints and videoType message after every re-connect. 3 лет назад
.github fix: Adds missing checks for clean repo. 3 лет назад
connection_optimization remove jitsiRegionInfo from lib-jitsi-meet (#490) 8 лет назад
doc feat(xmpp) remove clientNode config option 4 лет назад
modules fix(BridgeChannel): re-send constraints and videoType message after every re-connect. This fixes an issue where the receiver constraints and video type messages are sent on the bridge channel only the first time the ws conn gets re-established. 3 лет назад
service fix(multi-stream) Handle source-name based presence updates. Handle presence updates for multiple sources per remote endpoint. 3 лет назад
types fix(BridgeChannel): re-send constraints and videoType message after every re-connect. This fixes an issue where the receiver constraints and video type messages are sent on the bridge channel only the first time the ws conn gets re-established. 3 лет назад
.editorconfig remove all participants and tracks when leaving the room 10 лет назад
.eslintignore feat(ts) add auto-generated type declarations 4 лет назад
.eslintrc.js chore(deps) update Babel and ESLint to the latest versions 4 лет назад
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum 3 лет назад
.gitignore feat(build) don't build library on postinstall 4 лет назад
JitsiConference.js fix: p2p reject reason (#1840) 3 лет назад
JitsiConferenceErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 лет назад
JitsiConferenceErrors.ts feat(ts) TypeScript enum for JitsiConferenceErrors 3 лет назад
JitsiConferenceEventManager.js typescript conversion of service/RTC/VideoType to named export 3 лет назад
JitsiConferenceEvents.spec.ts ref(face-expressions) refactor face landmarks namings (#1977) 3 лет назад
JitsiConferenceEvents.ts ref(face-expressions) refactor face landmarks namings (#1977) 3 лет назад
JitsiConnection.js feat: Skips using disco-info for features. (#1450) 5 лет назад
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 fix(ts) clean-up TS tests where conversion is complete 3 лет назад
JitsiConnectionEvents.ts feat(ts) TypeScript enum for JitsiConnectionEvents 3 лет назад
JitsiMediaDevices.js feat(ts) convert MediaType and its usages 3 лет назад
JitsiMediaDevicesEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 лет назад
JitsiMediaDevicesEvents.ts feat(ts) TypeScript enum for JitsiMediaDevicesEvents 3 лет назад
JitsiMeetJS.js fix(multi-stream) Check if the flags config options is defined. 3 лет назад
JitsiParticipant.js fix: Set affiliation. (#1966) 3 лет назад
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed 9 лет назад
JitsiTrackError.js chore(lint) tame the new linter 4 лет назад
JitsiTrackErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 лет назад
JitsiTrackErrors.ts ref(ts) format JitsiTrackErrors 3 лет назад
JitsiTrackEvents.spec.ts typescript implementation of JitsiTrackEvents 3 лет назад
JitsiTrackEvents.ts typescript implementation of JitsiTrackEvents 3 лет назад
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 10 лет назад
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 feat(xmpp): allow setting resource on room jid (#940) 6 лет назад
index.js Prepare for webpack 2 8 лет назад
karma.conf.js feat(test) add tests to monitor regressions in the TypeScript conversion 3 лет назад
package-lock.json chore(deps): bump minimist from 1.2.5 to 1.2.6 3 лет назад
package.json fix(SDP) Always modify the streamId part of msid when source-name signaling enabled. Do this even if the browser provides a non '-' string for streamId since we rely on this to generate the source name. 3 лет назад
tsconfig.json feat(test) add tests to monitor regressions in the TypeScript conversion 3 лет назад
webpack-shared-config.js chore(build) remove unneeded code 3 лет назад
webpack.config.js feat(ts) introduce TypeScript 4 лет назад

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.