{"id":15816666,"url":"https://github.com/shaunbharat/googlemeetapi","last_synced_at":"2025-07-26T05:02:20.431Z","repository":{"id":57683720,"uuid":"488379190","full_name":"shaunbharat/GoogleMeetAPI","owner":"shaunbharat","description":"A Javascript package for interacting with a Google Meet, using Puppeteer.","archived":false,"fork":false,"pushed_at":"2024-03-07T06:54:06.000Z","size":59,"stargazers_count":32,"open_issues_count":3,"forks_count":12,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-19T21:48:51.523Z","etag":null,"topics":["api","bot","google","google-meet","google-meet-api","google-meet-bot","meet","meetings","puppeteer"],"latest_commit_sha":null,"homepage":"https://shaunbharat.github.io/GoogleMeetAPI","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shaunbharat.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":"2022-05-03T22:20:39.000Z","updated_at":"2025-01-17T13:55:58.000Z","dependencies_parsed_at":"2024-10-26T10:39:38.319Z","dependency_job_id":"096d70d5-1056-4920-a19c-8b20fe9b8936","html_url":"https://github.com/shaunbharat/GoogleMeetAPI","commit_stats":{"total_commits":15,"total_committers":2,"mean_commits":7.5,"dds":"0.33333333333333337","last_synced_commit":"85e9259491d30d8ca804ba69bd1bdaf02ed5f996"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaunbharat%2FGoogleMeetAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaunbharat%2FGoogleMeetAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaunbharat%2FGoogleMeetAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaunbharat%2FGoogleMeetAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shaunbharat","download_url":"https://codeload.github.com/shaunbharat/GoogleMeetAPI/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252882004,"owners_count":21819148,"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","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":["api","bot","google","google-meet","google-meet-api","google-meet-bot","meet","meetings","puppeteer"],"created_at":"2024-10-05T05:06:40.025Z","updated_at":"2025-05-07T12:46:50.206Z","avatar_url":"https://github.com/shaunbharat.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GoogleMeetAPI\n\nA Javascript package for interacting with a Google Meet, using Puppeteer.\n\n- [GitHub Repository](https://github.com/shaunbharat/GoogleMeetAPI)\n- [npm Package](https://www.npmjs.com/package/@shaunbharat/google-meet-api)\n- [Documentation](https://shaunbharat.github.io/GoogleMeetAPI)\n\n## Features\n\nI have not written documentation for this package, but here is a quick list of some things that can be done with this package.\n\n### Quick List of Features\n\n- Sending Messages\n- Reading and Handling Messages\n- Handling Member Joins and Leaves\n- Toggling Microphone and Video\n\n### Main Functions\n\n```javascript\nclient.sendMessage();\n\nclient.chatEnabled();\n\nclient.toggleMic();\n\nclient.toggleVideo();\n```\n\n### Events\n\n```javascript\nclient.on('message', () =\u003e {});\n\nclient.on('memberJoin', () =\u003e {});\n\nclient.on('memberLeave', () =\u003e {});\n```\n\n## Install\n\n```bash\nnpm install @shaunbharat/google-meet-api\n```\n\n## Usage\n\n\u003e examples/start.js\n\n```javascript\nconst { Meet } = require('../meet');\nconst client = new Meet();\n\nconfig = { meetingLink: 'https://meet.google.com/xyz-wxyz-xyz', email: '', pw: '' };\n\nasync function command(client, message) {\n    if (message.content.startsWith(\"!quote\")) {\n        await client.sendMessage(`${message.author} said, \"${message.content.replace(\"!quote \", \"\")}\" at ${message.time}`);\n    }\n\n}\n\n(async () =\u003e {\n\n    await client.once('ready', async () =\u003e {\n        console.log('ready');\n    })\n\n    await client.login(config);\n\n    await client.on('message', async (message) =\u003e {\n        command(client, message);\n    })\n\n    await client.on('memberJoin', async (member) =\u003e {\n        await client.sendMessage(`Welcome, ${member.name}!`);\n    })\n\n    await client.on('memberLeave', async (member) =\u003e {\n        await client.sendMessage(`Goodbye, ${member.name}!`);\n    })\n\n})()\n\n/*\n Async/await syntax is required if you need to execute specific actions with Puppeteer or don't want to be limited to only the events already implemented.\n*/\n\n// If errors like \"Node is detached\" get thrown, restarting almost always fixes most errors\n```\n\n## License\n\nCopyright © 2022 [Shaun Bharat](https://github.com/shaunbharat).\n\nThis project is licensed with the [MIT](https://github.com/shaunbharat/GoogleMeetAPI/blob/main/LICENSE) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaunbharat%2Fgooglemeetapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshaunbharat%2Fgooglemeetapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaunbharat%2Fgooglemeetapi/lists"}