{"id":22051368,"url":"https://github.com/codysherman/2nfm","last_synced_at":"2025-07-31T08:35:23.632Z","repository":{"id":39240147,"uuid":"178475105","full_name":"codysherman/2nfm","owner":"codysherman","description":"Share your screen and computer's audio via WebRTC!","archived":false,"fork":false,"pushed_at":"2022-12-11T23:13:16.000Z","size":40194,"stargazers_count":31,"open_issues_count":47,"forks_count":17,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-09T02:25:26.300Z","etag":null,"topics":["audio-streaming","peer","peer-to-peer","video-streaming","vue","webrtc"],"latest_commit_sha":null,"homepage":"https://2n.fm","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codysherman.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}},"created_at":"2019-03-29T21:02:20.000Z","updated_at":"2024-06-28T06:28:14.000Z","dependencies_parsed_at":"2023-01-27T09:00:47.837Z","dependency_job_id":null,"html_url":"https://github.com/codysherman/2nfm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codysherman/2nfm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codysherman%2F2nfm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codysherman%2F2nfm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codysherman%2F2nfm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codysherman%2F2nfm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codysherman","download_url":"https://codeload.github.com/codysherman/2nfm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codysherman%2F2nfm/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268012470,"owners_count":24181002,"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-07-31T02:00:08.723Z","response_time":66,"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":["audio-streaming","peer","peer-to-peer","video-streaming","vue","webrtc"],"created_at":"2024-11-30T15:08:47.620Z","updated_at":"2025-07-31T08:35:23.608Z","avatar_url":"https://github.com/codysherman.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 2N.fm is in progress\n\nTo start a stream visit: https://2n.fm/streamer\n\nVisit https://2N.fm/{{room-name-here}} to view someone else's tab.\n\n## Project setup\n```\nyarn\n```\n\n### Compiles and hot-reloads for development\n```\nyarn start\n```\n\n### Compiles and minifies for production\n```\nyarn run build\n```\n\n### Run your tests\n```\nyarn run test\n```\n\n### Lints and fixes files\n```\nyarn run lint\n```\n\n### Customize configuration\nSee [Configuration Reference](https://cli.vuejs.org/config/).\n\n\u003c!-- # Disclaimer\n\nNo more maintaining this extension; as of 2019. So please use at your own risk.\n\n* https://www.webrtc-experiment.com/disclaimer/\n\n----\n\n## How to view screen?\n\nTry any of the below URL. Replace `your_room_id` with real room-id:\n\n```\nhttps://www.webrtc-experiment.com/screen/?s=your_room_id\n```\n\n## Developer Notes\n\n1. Chrome extension can share your screen, tab, any application's window, camera, microphone and speakers.\n2. Clicking extension icon will generate a unique random room URL. You can share that URL with multiple users and all of them can view your screen.\n3. [RTCMultiConnection](https://github.com/muaz-khan/RTCMultiConnection) is a WebRTC library that is used for peer-to-peer WebRTC streaming.\n4. PubNub is used as a signaling method for handshake. However you can use [any WebRTC signaing option](https://github.com/muaz-khan/WebRTC-Experiment/blob/master/Signaling.md).\n5. You can replace or include your own STUN+TURN servers in the [IceServersHandler.js](https://github.com/muaz-khan/Chrome-Extensions/blob/master/desktopCapture-p2p/IceServersHandler.js) file.\n6. VP9 is currently default video codecs. You can always change codecs using options page.\n7. [getStats](https://github.com/muaz-khan/getStats) is a WebRTC library that is used for bandwidth \u0026 codecs detection. This library is optional. You can always remove it.\n\n## Before publishing it for your own business\n\n\u003e This step is optional. You can keep using `webrtc-experiment.com` URL as a screen viewer.\n\nOpen [desktop-capturing.js](https://github.com/muaz-khan/Chrome-Extensions/blob/master/desktopCapture-p2p/desktop-capturing.js) and find following line:\n\n```javascript\nvar resultingURL = 'https://www.webrtc-experiment.com/screen/?s=' + connection.sessionid;\n```\n\nReplace above line with your own server/website:\n\n```javascript\nvar resultingURL = 'https://yourWebSite.com/index.html?s=' + connection.sessionid;\n```\n\nYou can find `index.html` here:\n\n* [desktopCapture-p2p/index.html](https://github.com/muaz-khan/Chrome-Extensions/blob/master/desktopCapture-p2p/index.html)\n\n## For more information\n\nFor additional information, click [this link](https://github.com/muaz-khan/WebRTC-Experiment/blob/7cd04a81b30cdca2db159eb746e2714307640767/Chrome-Extensions/desktopCapture/README.md).\n\n## It is Open-Sourced!\n\n* https://github.com/muaz-khan/Chrome-Extensions/tree/master/desktopCapture-p2p\n\n## License\n\n[Chrome-Extensions](https://github.com/muaz-khan/Chrome-Extensions) are released under [MIT license](https://github.com/muaz-khan/Chrome-Extensions/blob/master/LICENSE) . Copyright (c) [Muaz Khan](https://MuazKhan.com). --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodysherman%2F2nfm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodysherman%2F2nfm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodysherman%2F2nfm/lists"}