Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Naman Jain 42bafae816
feat(ts) migrate retry to TS
6 meses atrás
.github fix(gh) drop old stale.yml file 6 meses atrás
doc Update jwt docs key generation. 2 anos atrás
modules feat(ts) migrate retry to TS 6 meses atrás
service feat(ts) migrate SignalingLayer to TS 6 meses atrás
types feat(RTC) drop PERMISSION_PROMPT_IS_SHOWN event (#2609) 10 meses atrás
.editorconfig remove all participants and tracks when leaving the room 9 anos atrás
.eslintignore feat(lint) update linter and apply it to TS code 7 meses atrás
.eslintrc.js feat(lint) update to eslint-config-jitsi v6 6 meses atrás
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum 3 anos atrás
.gitignore Unify events and output single TypeScript declaration (#2407) 1 ano atrás
.npmrc chore(deps) strophe.js@1.6.0 2 anos atrás
.nvmrc feat(build) use Node 20 1 ano atrás
CONTRIBUTING.md feat(docs) added CONTRIBUTING 6 meses atrás
JitsiConference.js fix(connection-quality) Trigger ramp up on codec and session changes. 6 meses atrás
JitsiConferenceErrors.spec.ts feat: Detects different not-allowed errors. 1 ano atrás
JitsiConferenceErrors.ts feat(lint) update linter and apply it to TS code 7 meses atrás
JitsiConferenceEventManager.js chore(*) stop using __filename 6 meses atrás
JitsiConferenceEvents.spec.ts fix(connection-quality) Trigger ramp up on codec and session changes. 6 meses atrás
JitsiConferenceEvents.ts fix(connection-quality) Trigger ramp up on codec and session changes. 6 meses atrás
JitsiConnection.js chore(*) stop using __filename 6 meses atrás
JitsiConnectionErrors.spec.ts feat(moderator): Fires new error on connection failed for conference request failures. (#2591) 11 meses atrás
JitsiConnectionErrors.ts feat(lint) update linter and apply it to TS code 7 meses atrás
JitsiConnectionEvents.spec.ts feat: Introduces connection event for custom properties. (#2493) 1 ano atrás
JitsiConnectionEvents.ts feat(lint) update linter and apply it to TS code 7 meses atrás
JitsiMediaDevices.js feat(JitsiMediaDevices) don't initialize in the constructor 1 ano atrás
JitsiMediaDevicesEvents.spec.ts feat(createLocalTracks) drop unused slow gUM event 1 ano atrás
JitsiMediaDevicesEvents.ts feat(lint) update linter and apply it to TS code 7 meses atrás
JitsiMeetJS.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) 1 ano atrás
JitsiMeetJS.ts chore(*) stop using __filename 6 meses atrás
JitsiParticipant.ts feat(ts) migrate JitsiParticipant to TS 6 meses atrás
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed 8 anos atrás
JitsiTrackError.ts feat(ts) migrate JitsiTrackError to TS 6 meses atrás
JitsiTrackErrors.spec.ts fix(ScreenObtainer) fix using gDM with old Electron clients 8 meses atrás
JitsiTrackErrors.ts feat(lint) update linter and apply it to TS code 7 meses atrás
JitsiTrackEvents.spec.ts squash: Address review comments. 1 ano atrás
JitsiTrackEvents.ts feat(lint) update linter and apply it to TS code 7 meses atrás
JitsiTranscriptionStatus.spec.ts fix(JitsiTranscriptionStatus): the status values are upper case 1 ano atrás
JitsiTranscriptionStatus.ts feat(lint) update linter and apply it to TS code 7 meses atrás
LICENSE initial commit 9 anos atrás
README.md fix(doc) update building 3 anos atrás
SECURITY.md Create SECURITY.md 5 anos atrás
TypeScript.md feat(doc) add plan for the TypeScript conversion process 3 anos atrás
authenticateAndUpgradeRole.js chore(*) stop using __filename 6 meses atrás
globals.d.ts feat(ts) migrate LiteModeContext to TS 6 meses atrás
index.js feat(lint) update linter and apply it to TS code 7 meses atrás
karma.conf.js feat(build) embed jquery slim 3 anos atrás
package-lock.json feat(ts) migrate JitsiParticipant to TS 6 meses atrás
package.json feat(ts) migrate JitsiParticipant to TS 6 meses atrás
tsconfig.json fix(ts) move dts file to types/ 1 ano atrás
webpack-shared-config.js chore(*) stop using __filename 6 meses atrás
webpack.config.js feat(lint) update linter and apply it to TS code 7 meses atrás

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.