{"id":18488280,"url":"https://github.com/jitsi/jitsi-meet-react-sdk","last_synced_at":"2025-10-09T16:18:11.948Z","repository":{"id":40655012,"uuid":"423819721","full_name":"jitsi/jitsi-meet-react-sdk","owner":"jitsi","description":"React SDK for Jitsi Meet","archived":false,"fork":false,"pushed_at":"2025-02-18T11:30:05.000Z","size":1256,"stargazers_count":75,"open_issues_count":17,"forks_count":43,"subscribers_count":11,"default_branch":"main","last_synced_at":"2025-09-20T16:43:32.281Z","etag":null,"topics":["jitsi-meet","react"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jitsi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-02T11:37:37.000Z","updated_at":"2025-08-28T22:02:59.000Z","dependencies_parsed_at":"2024-06-18T15:37:43.044Z","dependency_job_id":"65a1165e-3432-48db-8359-617b61e48a19","html_url":"https://github.com/jitsi/jitsi-meet-react-sdk","commit_stats":null,"previous_names":["jitsi/jitsi-meet-web-sdk"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/jitsi/jitsi-meet-react-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitsi%2Fjitsi-meet-react-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitsi%2Fjitsi-meet-react-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitsi%2Fjitsi-meet-react-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitsi%2Fjitsi-meet-react-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jitsi","download_url":"https://codeload.github.com/jitsi/jitsi-meet-react-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitsi%2Fjitsi-meet-react-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001769,"owners_count":26083171,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jitsi-meet","react"],"created_at":"2024-11-06T12:51:30.804Z","updated_at":"2025-10-09T16:18:11.914Z","avatar_url":"https://github.com/jitsi.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Jitsi Meet React SDK\nThe Jitsi Meet React SDK provides the same user experience as the [Jitsi Meet](https://github.com/jitsi/jitsi-meet) app, in a customizable way which you can embed in your apps.\n\n## Install\n```bash\nnpm install @jitsi/react-sdk\n```\n\n### Usage\nImport into React | NextJs page for usage\n```js\nimport {JitsiMeeting} from \"@jitsi/react-sdk\";\n```\n\n### Modules\nThis library exposes two components with similar properties, intended for different use-cases.\n#### JitsiMeeting\nTo be used with custom domains as-it-is in React projects:\n```js\n\u003cJitsiMeeting\n    domain = { YOUR_DOMAIN }\n    roomName = { YOUR_ROOM_NAME }\n/\u003e\n```\n##### Properties specific to the `JitsiMeeting` component\n###### `domain`\nOptional. Field used to retrieve the external_api.js file that initializes the IFrame. If omitted, defaults to `meet.jit.si`.\n\n#### JaaSMeeting\nTo be used with the `8x8.vc` domain as-it-is in React projects:\n```js\n\u003cJaaSMeeting\n    appId = { YOUR_APP_ID }\n    roomName = { YOUR_ROOM_NAME }\n/\u003e\n```\n\n...or with the `stage.8x8.vc` domain:\n```js\n\u003cJaaSMeeting\n    appId = { YOUR_APP_ID }\n    roomName = { YOUR_ROOM_NAME }\n    useStaging = { true }\n/\u003e\n```\n\n##### Properties specific to the `JaasMeeting` component\n###### `appId` \nRequired. Provides an isolated context and prefixes the room name.\n\n###### `useStaging`\nOptional. Tells whether to use the staging environment or not.\n\n##### Common properties\n###### `roomName`\nRequired. String used when joining the meeting.\n\n###### `getIFrameRef`\nOptional. Callback to retrieve the parent node of the IFrame for more control (e.g. styling).\n```js\n\u003cJitsiMeeting\n    ...\n    getIFrameRef = { iframeRef =\u003e { iframeRef.style.height = '700px'; } }\n/\u003e\n```\n\n###### `onApiReady`\nOptional. Callback triggered when the external API is loaded to expose it for events and commands.\n```js\n\u003cJitsiMeeting\n    ...\n    onApiReady = { externalApi =\u003e console.log('Jitsi Meet External API', externalApi) }\n/\u003e\n```\n\n###### `onReadyToClose`\nOptional. Callback triggered when the meeting is ready to be closed.\n```js\n\u003cJitsiMeeting\n    ...\n    onReadyToClose = { () =\u003e console.log('Jitsi Meet is ready to be closed') }\n/\u003e\n```\n\n###### `configOverwrite`\nOptional. Object used for options overrides.\n\n###### `interfaceConfigOverwrite`\nOptional. Object used for more options overrides.\n\n###### `jwt`\nOptional. Token for authentication.\n\n###### `invitees`\nOptional. Participants list.\n\n###### `devices`\nOptional. Information regarding the devices used during the call.\n\n###### `userInfo`\nOptional. Details about the participant that started the meeting.\n\n###### `lang`\nOptional. The default meeting language.\n\n###### `release`\nOptional. Information regarding the `stage.8x8.vc` or `8x8.vc` release version. Expects the following format: `release-1234`.\n\n###### `spinner`\nOptional. Custom loading view while the IFrame is loading.\n\n## Sample\nInstall and run the project from the `example` directory to see the JitsiMeeting module in action.\n```bash\nnpm run demo\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjitsi%2Fjitsi-meet-react-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjitsi%2Fjitsi-meet-react-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjitsi%2Fjitsi-meet-react-sdk/lists"}