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.
Jorge Oliveira c8136f9e09
fix(JitsiConference) fix exceptions which occur after leaving the conference
hace 3 años
.github fix: Adds missing checks for clean repo. hace 4 años
connection_optimization remove jitsiRegionInfo from lib-jitsi-meet (#490) hace 8 años
doc feat(xmpp) remove clientNode config option hace 4 años
modules fix(JitsiConference) fix exceptions which occur after leaving the conference hace 3 años
service feat(ts) TypeScript version of rtcevents hace 3 años
types feat(ts) TypeScript version of rtcevents hace 3 años
.editorconfig remove all participants and tracks when leaving the room hace 10 años
.eslintignore feat(ts) add auto-generated type declarations hace 4 años
.eslintrc.js chore(deps) update Babel and ESLint to the latest versions hace 4 años
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum hace 4 años
.gitignore feat(build) don't build library on postinstall hace 4 años
JitsiConference.js feat(ts) convert MediaType and its usages hace 3 años
JitsiConferenceErrors.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion hace 4 años
JitsiConferenceErrors.ts feat(ts) TypeScript enum for JitsiConferenceErrors hace 4 años
JitsiConferenceEventManager.js feat(ts) convert MediaType and its usages hace 3 años
JitsiConferenceEvents.spec.ts feat(multi-stream-support) Add track streaming status (#1855) hace 4 años
JitsiConferenceEvents.ts feat(multi-stream-support) Add track streaming status (#1855) hace 4 años
JitsiConnection.js feat: Skips using disco-info for features. (#1450) hace 5 años
JitsiConnectionErrors.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion hace 4 años
JitsiConnectionErrors.ts feat(ts) TypeScript enum for JitsiConnectionErrors hace 4 años
JitsiConnectionEvents.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion hace 4 años
JitsiConnectionEvents.ts feat(ts) TypeScript enum for JitsiConnectionEvents hace 4 años
JitsiMediaDevices.js feat(ts) convert MediaType and its usages hace 3 años
JitsiMediaDevicesEvents.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion hace 4 años
JitsiMediaDevicesEvents.ts feat(ts) TypeScript enum for JitsiMediaDevicesEvents hace 4 años
JitsiMeetJS.js feat(ts) convert MediaType and its usages hace 3 años
JitsiParticipant.js feat(ts) convert MediaType and its usages hace 3 años
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed hace 9 años
JitsiTrackError.js chore(lint) tame the new linter hace 4 años
JitsiTrackErrors.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion hace 4 años
JitsiTrackErrors.ts ref(ts) format JitsiTrackErrors hace 4 años
JitsiTrackEvents.js feat(multi-stream-support) Add track streaming status (#1855) hace 4 años
JitsiTrackEvents.spec.ts feat(multi-stream-support) Add track streaming status (#1855) hace 4 años
JitsiTranscriptionStatus.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion hace 4 años
JitsiTranscriptionStatus.ts feat(ts) TypeScript enum for JitsiTranscriptionStatus hace 4 años
LICENSE initial commit hace 10 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 4 años
authenticateAndUpgradeRole.js feat(xmpp): allow setting resource on room jid (#940) hace 6 años
index.js Prepare for webpack 2 hace 8 años
karma.conf.js feat(test) add tests to monitor regressions in the TypeScript conversion hace 4 años
package-lock.json chore(deps) make sure no SSH URLs get generated in package-lock.json hace 4 años
package.json chore(deps) make sure no SSH URLs get generated in package-lock.json hace 4 años
tsconfig.json feat(test) add tests to monitor regressions in the TypeScript conversion hace 4 años
webpack-shared-config.js feat(multi-stream-support) Handle SDP munging for multiple local/remote streams per ep. (#1868) hace 4 años
webpack.config.js feat(ts) introduce TypeScript hace 4 años

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.