{"id":28491463,"url":"https://github.com/line/planet-kit-demoapp-web","last_synced_at":"2026-03-07T13:02:59.296Z","repository":{"id":271910946,"uuid":"886445833","full_name":"line/planet-kit-demoapp-web","owner":"line","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-23T02:03:05.000Z","size":97,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-06-08T08:07:21.959Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/line.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null}},"created_at":"2024-11-11T01:36:24.000Z","updated_at":"2025-06-07T10:50:47.000Z","dependencies_parsed_at":"2025-05-26T06:04:06.648Z","dependency_job_id":null,"html_url":"https://github.com/line/planet-kit-demoapp-web","commit_stats":null,"previous_names":["line/planet-kit-demoapp-web"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/line/planet-kit-demoapp-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/line%2Fplanet-kit-demoapp-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/line%2Fplanet-kit-demoapp-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/line%2Fplanet-kit-demoapp-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/line%2Fplanet-kit-demoapp-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/line","download_url":"https://codeload.github.com/line/planet-kit-demoapp-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/line%2Fplanet-kit-demoapp-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30214618,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T12:15:00.571Z","status":"ssl_error","status_checked_at":"2026-03-07T12:15:00.217Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-06-08T08:07:22.544Z","updated_at":"2026-03-07T13:02:59.289Z","avatar_url":"https://github.com/line.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LINE Planet Call for Web\n\nLINE Planet Call is a demo app for LINE Planet, a cloud-based real-time communications platform as a service (CPaaS).\n\nLINE Planet Call showcases the key features of LINE Planet, including 1-to-1 and group call functionalities. It can help you understand how to integrate LINE Planet into your services and enhance productivity when you implement your own app.\n\n## Planet Documentation\n\n[Planet Documentation](https://docs.lineplanet.me/) provides additional resources to help you integrate LINE Planet into your service. These resources include LINE Planet specifications, developer guides for each client platform, and server API references.\n\n## Features\n\nLINE Planet Call provides the following features:\n\n-   **Group call**\n    -   Pre-check the camera and mic before a group call\n    -   Create a group video call room\n    -   Join a group video call room\n    -   Leave a group video call room\n-   **Basic features**\n    -   Mute/unmute the mic\n    -   Enable/disable the camera\n    -   Select camera source\n    -   Provide talker information\n    -   Display the participant's name\n\n## Run the demo\n\n-   [Run demo](https://line-planet-call.lineplanet.me)\n\n## Run the project\n\n### Prerequisites\n\nBefore getting started with LINE Planet Call, do the following:\n\n#### System requirements\n\n-   Make sure that your system meets the [system requirements](https://docs.lineplanet.me/overview/specification/planetkit-system-requirements#web).\n-   [Install Node.js](https://nodejs.org/en/download/current).\n-   The specifications of the currently supported web browsers are as follows. If necessary, install a web browser or upgrade the version of your web browser.\n    -   Chromium 72+ based browser\n    -   Safari 14.5+ (Beta)\n\n#### Mapping localhost to a LINE Planet Call domain\n\n\u003e In the actual implementation of your app, you have to ask us to register the domain you will serve.\n\n-   To avoid [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) issues, you should use our domain registered for LINE Planet Call.\n-   This involves modifying the `hosts` file on your system. Follow the instructions below based on your operating system:\n\n-   For Windows users\n\n    1. Open Notepad as an Administrator. You can do this by searching for Notepad in the Start menu, right-clicking on it, and selecting \"Run as administrator\".\n    2. In Notepad, open the `hosts` file located at `C:\\Windows\\System32\\drivers\\etc\\hosts`.\n    3. Scroll to the bottom of the file and add the following line:\n\n        ```\n        127.0.0.1       line-planet-call-local.lineplanet.me\n        ```\n\n    4. Save the file and close Notepad.\n\n-   For macOS users\n\n    1. Open Terminal.\n    2. Type the following command to open the `hosts` file in the nano editor (you can use any other text editor if you prefer):\n\n        ```console\n        $ sudo nano /etc/hosts\n        ```\n\n    3. You might be prompted to enter your password. Type it in, and then press Enter.\n    4. Scroll to the bottom of the file and add the following line:\n\n        ```\n        127.0.0.1       line-planet-call-local.lineplanet.me\n        ```\n\n    5. Press `Ctrl + O` to save the file, then `Enter` to confirm, and `Ctrl + X` to exit nano.\n\nAfter completing these steps, you will have successfully mapped the LINE Planet Call domain (`line-planet-call-local.lineplanet.me`) to your localhost (`127.0.0.1`).\n\n\u003cimg src=\"/docs/images/hosts_file.png\" width=\"400\"/\u003e\n\n### Install the project\n\n#### 1. Download source code\n\nClone this repository, or download this repository and unzip the files.\n\n#### 2. Install dependencies\n\nBefore running the application, you must install the necessary dependencies. On the terminal, execute the following command:\n\n```console\n$ npm install\n```\n\n### Run the project\n\nAfter installing the dependencies, you can start the application by running:\n\n```console\n$ npm run start-local\n```\n\nAfter starting the application, you can use the your LINE Planet Call at `https://line-planet-call-local.lineplanet.me:3000`.\n\n## Limitations\n\nIn LINE Planet Call, each call is limited to a duration of five minutes. After five minutes, the call ends with the MAX_CALL_TIME_EXCEEDED disconnect reason.\n\n## Issues and inquiries\n\nPlease file any issues or inquiries you have to our representative or [dl_planet_help@linecorp.com](mailto:dl_planet_help@linecorp.com). Your opinions are always welcome.\n\n## FAQ\n\nYou can find answers to our frequently asked questions in the [FAQ](https://docs.lineplanet.me/help/faq) section.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fline%2Fplanet-kit-demoapp-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fline%2Fplanet-kit-demoapp-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fline%2Fplanet-kit-demoapp-web/lists"}