{"id":43181893,"url":"https://github.com/zegoim/express-demo-web","last_synced_at":"2026-02-01T03:45:11.613Z","repository":{"id":98375494,"uuid":"359349711","full_name":"zegoim/express-demo-web","owner":"zegoim","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-26T06:23:26.000Z","size":29102,"stargazers_count":22,"open_issues_count":1,"forks_count":13,"subscribers_count":8,"default_branch":"master","last_synced_at":"2026-01-26T20:55:06.245Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zegoim.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-04-19T06:17:33.000Z","updated_at":"2026-01-26T06:23:32.000Z","dependencies_parsed_at":"2024-04-07T07:29:01.297Z","dependency_job_id":"08d7c883-6150-4c5d-a50b-f018067766dc","html_url":"https://github.com/zegoim/express-demo-web","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zegoim/express-demo-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zegoim%2Fexpress-demo-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zegoim%2Fexpress-demo-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zegoim%2Fexpress-demo-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zegoim%2Fexpress-demo-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zegoim","download_url":"https://codeload.github.com/zegoim/express-demo-web/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zegoim%2Fexpress-demo-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28967019,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T02:14:24.993Z","status":"ssl_error","status_checked_at":"2026-02-01T02:13:55.706Z","response_time":56,"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":"2026-02-01T03:45:11.142Z","updated_at":"2026-02-01T03:45:11.603Z","avatar_url":"https://github.com/zegoim.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zego Express Example Web\n\nThis is Express Example (Sample topic Demo) Web repositories\n\n## Preparation before development\n \n  1. Jquery.i18n is used in the project for internationalization, and it is necessary to simulate the server environment to read the configuration file. You can use a vscode plug-in Live Server to simulate. \n  \n  Check out this [article](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer) to learn how to use\n\n  2. Need to fill in appID and Server and tokenUrl in `/src/keyCenter.js `\n\n## Directory structure diagram\n\n### Coding\n\n````tree\nexpress-demo-web\n├── README.md\n...\n└── src # Source folder\n    ├── Examples # Examples code\n    │ ├── AdvancedAudioProcessing # Audio advanced functions\n    │ │ ├── AEC_ANS_AGC # Audio 3A processing\n    │ │ ├── AudioMixing # Audio Mixing\n    │ │ ├── CustomAudioCaptureAndRendering # Custom audio capture and rendering\n    │ │ ├── EarReturnAndChannelSettings # Ear return and channel settings\n    │ │ └── SoundLevelAndAudioSpectrum # Volume change\n    │ ├── AdvancedStreaming # Push-pull streaming advanced\n    │ │ ├── LowLatencyLive # Low Latency Live\n    │ │ ├── PublishingMultipleStreams # Simultaneously push multiple streams\n    │ │ ├── StreamByCDN # Push and pull streams through CND\n    │ │ └── StreamMonitoring # Push stream, pull stream information monitoring\n    │ ├── AdvancedVideoProcessing # Video advanced functions\n    │ │ ├── CustomVideoCapture # Set video encoding properties\n    │ │ └── EncodingAndDecoding # Custom video capture\n    │ ├── CommonFeatures # Common features\n    │ │ ├── CommonVideoConfig # Common video configuration\n    │ │ └── RoomMessage # Room real-time message\n    │ ├── DebugAndConfig # Debug and configure\n    │ │ ├── InitSettings # Initialize settings\n    │ │ └── LogAndVersionAndDebug # log, version number, debugging information\n    │ ├── Framework # Best practices/framework related\n    │ │ ├── Angular # Use Angular to implement audio and video functions\n    │ │ ├── React # Use React to implement audio and video functions\n    │ │ └── Vue # Use Vue to implement audio and video functions\n    │ ├── Others # Other functions\n    │ │ ├── DeviceDetection # Device detection\n    │ │ ├── EffectsBeauty # Basic Beauty\n    │ │ ├── MediaTrackReplacement # Audio and video track replacement\n    │ │ ├── NetworkDetection # Network detection\n    │ │ ├── RangeAudio # Range audio\n    │ │ ├── ScreenSharing # Screen sharing\n    │ │ └── StreamMixing # Mixing streams\n    │ ├── QuickStart # Quick start\n    │ │ ├── CommonUsage # Implementation process\n    │ │ ├── Playing # Pull flow\n    │ │ ├── Publishing # Push stream\n    │ │ └── VideoTalk # Video call\n    │ └── Scenes # Best practices/scenario related\n    │ └── VideoForMultipleUsers # Multi-person video call\n    ├── assets # Resource folder, storing resource files shared by the project\n    │ ├── css # CSS file shared by the project\n    │ ├── images # Static image resources\n    │ ├── js # js files shared by the project, including sdk, various dependent libraries, etc.\n    │ └── translate # translate related configuration files\n    └── KeyCenter.js # Configure related files, you can configure appID, server address, etc.\n````\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzegoim%2Fexpress-demo-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzegoim%2Fexpress-demo-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzegoim%2Fexpress-demo-web/lists"}