{"id":15725931,"url":"https://github.com/altanai/webrtc_usercases","last_synced_at":"2025-09-06T16:41:06.899Z","repository":{"id":35154256,"uuid":"209297676","full_name":"altanai/webrtc_usercases","owner":"altanai","description":"This project aims to setup environment for webrtc video Call session using webrtcdevelopment npm module https://www.npmjs.com/package/webrtcdevelopment","archived":false,"fork":false,"pushed_at":"2022-12-07T01:07:47.000Z","size":3469,"stargazers_count":4,"open_issues_count":7,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-01T06:51:47.353Z","etag":null,"topics":["webrtc","websocket"],"latest_commit_sha":null,"homepage":"https://github.com/altanai/webrtcdevelopment#readme","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/altanai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-18T12:01:18.000Z","updated_at":"2025-02-04T04:57:05.000Z","dependencies_parsed_at":"2023-01-15T14:55:48.552Z","dependency_job_id":null,"html_url":"https://github.com/altanai/webrtc_usercases","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/altanai/webrtc_usercases","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altanai%2Fwebrtc_usercases","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altanai%2Fwebrtc_usercases/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altanai%2Fwebrtc_usercases/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altanai%2Fwebrtc_usercases/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/altanai","download_url":"https://codeload.github.com/altanai/webrtc_usercases/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altanai%2Fwebrtc_usercases/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273933333,"owners_count":25193599,"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-09-06T02:00:13.247Z","response_time":2576,"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":["webrtc","websocket"],"created_at":"2024-10-03T22:25:05.136Z","updated_at":"2025-09-06T16:41:06.875Z","avatar_url":"https://github.com/altanai.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# quicly start a webrtc video Call session \n\n## get npm modules\n\ninstall npm module for webrtc development \n```\nnpm install webrtcdevelopment\n```\ninclude the css and js header files into project \n```\n\u003clink rel=stylesheet href=\"node_modules/webrtcdevelopment/client/build/webrtcdevelopment_header.css\"\u003e\n\u003cscript src=\"node_modules/webrtcdevelopment/client/build/webrtcdevelopment_header.js\"\u003e \u003c/script\u003e\n```\nindlude the main scripts \n```\n\u003clink rel=stylesheet href=\"node_modules/webrtcdevelopment/client/build/webrtcdevelopment.css\"\u003e\n\u003cscript src=\"node_modules/webrtcdevelopment/client/build/webrtcdevelopment.js\"\u003e\u003c/script\u003e\n```\n\n## Secure HTTP server to mount the website \n\n**Create CA**\nopenssl req -batch -new -newkey ec:\u003c(openssl ecparam -name prime256v1) -nodes -keyout ca-key.pem -x509 -out ca.pem -days 3650 -subj \"/CN=A localhost CA\"\n\n**Create a CSR for localhost, then sign it by CA**\nopenssl req -batch -new -newkey ec:\u003c(openssl ecparam -name prime256v1) -nodes  -keyout key.pem -subj /CN=localhost | openssl x509 -req -CAkey ca-key.pem -CA ca.pem -CAcreateserial -out cert.pem -days 365 -extfile \u003c(echo subjectAltName=DNS:localhost)\n\n$ http-server -S -C cert.pem -o\nStarting up http-server, serving ./ through https\nAvailable on:\n  https:127.0.0.1:8080\n  https:192.168.1.101:8080\n  https:192.168.1.104:8080\nHit CTRL-C to stop the server\n\nor use directly the fake keys supplied in project \n```\n$ http-server --ssl  -C fake-keys/certificate.pem -K fake-keys/privatekey.pem -o \nStarting up http-server, serving ./ through https\nAvailable on:\n  https://127.0.0.1:8080\n  https://192.168.0.3:8080\nHit CTRL-C to stop the server\n\n```\n\n## Secure nodejs socket.io server to mount the signaller \n\n// tbd \n\n## Loading widgets \n\nRefer to https://github.com/altanai/webrtc/blob/master/README.md\n\n## References \n\nwebrtcdevelopment npm module - https://npmjs.com/package/webrtcdevelopment\n\n## License \n----\nMIT\n\n## Author \n----\nAltanai ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faltanai%2Fwebrtc_usercases","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faltanai%2Fwebrtc_usercases","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faltanai%2Fwebrtc_usercases/lists"}