{"id":26996050,"url":"https://github.com/peter-mghendi/grapevine","last_synced_at":"2026-03-09T10:31:25.525Z","repository":{"id":130710651,"uuid":"375365746","full_name":"peter-mghendi/grapevine","owner":"peter-mghendi","description":"Asynchronously broadcasting gRPC streams over SignalR.","archived":false,"fork":false,"pushed_at":"2021-10-15T08:43:19.000Z","size":865,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-11T05:07:08.777Z","etag":null,"topics":["distributed-computing","dotnet","grpc","rpc","showcase","signalr","websockets"],"latest_commit_sha":null,"homepage":"","language":"C#","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/peter-mghendi.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}},"created_at":"2021-06-09T13:30:12.000Z","updated_at":"2022-01-19T15:42:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"7d47feb5-1ee7-43fb-8510-7b88e05cb9da","html_url":"https://github.com/peter-mghendi/grapevine","commit_stats":null,"previous_names":["peter-mghendi/grapevine"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/peter-mghendi/grapevine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mghendi%2Fgrapevine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mghendi%2Fgrapevine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mghendi%2Fgrapevine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mghendi%2Fgrapevine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peter-mghendi","download_url":"https://codeload.github.com/peter-mghendi/grapevine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mghendi%2Fgrapevine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30291807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"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":["distributed-computing","dotnet","grpc","rpc","showcase","signalr","websockets"],"created_at":"2025-04-04T01:16:57.935Z","updated_at":"2026-03-09T10:31:24.898Z","avatar_url":"https://github.com/peter-mghendi.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Grapevine\nAsynchronously broadcast gRPC streams over SignalR.\n\n![Grapevine Screenshot.](./screenshot.png \"Grapevine Screenshot\")\n\n# Introduction\nThis is a proof-of-concept on broadcasting [gRPC](https://grpc.io) streams asynchronously to front-end clients via\n[WebSockets](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API), [gRPC-web](https://grpc.io/docs/platforms/web/) \nor [SignalR](https://dotnet.microsoft.com/apps/aspnet/signalr).\n\n# Getting started\n\n## Prerequisites\n\n- [Git](https://git-scm.com) - Version Control System.\n- [.NET 5](https://dot.net) or later - Free, cross-platform, open source developer platform for building all your apps.\n\n## Installation\n\nPlease check the [official .NET documentation](https://dotnet.microsoft.com/download) for installation instructions before you start.\n\n\u003e All console commands are written for the Windows Command Prompt and may not produce the desired effects when used in other terminals.\n\n### 0. TL;DR Command List\n\nHere's the summary:\n\n    git clone https://github.com/sixpeteunder/grapevine.git\n    cd grapevine\n    dotnet restore\n    dotnet dev-certs https --trust\n    start dotnet run --project Grapevine.Edge\n    start dotnet run --project Grapevine.Web\n    start dotnet run --project Grapevine.Cli\n\n### 1. Clone the repository\n\nClone the repsitry using any of these methods.\n\nHTTPS:\n\n    git clone https://github.com/sixpeteunder/grapevine.git\n    \nSSH:\n\n    git clone git@github.com:sixpeteunder/grapevine.git\n    \nGitHub CLI:\n\n    gh repo clone sixpeteunder/grapevine\n\n### 2. Switch to the repo folder\n\n    cd grapevine\n\n### 3. Install dependencies\n\n\u003e Warning: These steps may be bandwith-intensive.\n\nRestore .NET dependencies using Nuget:\n\n\u003e This step is automatically performed whenever the code is built or run.\n\n    dotnet restore\n    \n### 4. Set up project\n\n\u003e macOS doesn't support ASP.NET Core gRPC with TLS. Additional configuration is required to successfully run gRPC services on macOS. \nFor more information, see [this document](https://docs.microsoft.com/en-gb/aspnet/core/grpc/troubleshoot?view=aspnetcore-5.0#unable-to-start-aspnet-core-grpc-app-on-macos).\n\nTo enable HTTPS during development, you need to [trust the HTTPS development certificate](https://docs.microsoft.com/en-gb/aspnet/core/security/enforcing-ssl?view=aspnetcore-5.0#trust-the-aspnet-core-https-development-certificate-on-windows-and-macos):\n\n\u003e The following command doesn't work on Linux. See your Linux distribution's documentation for trusting a certificate.\n\n    dotnet dev-certs https --trust\n\nStart the gRPC server:\n\n    start dotnet run --project Grapevine.Edge\n    \nStart the web/SignalR server:\n\n    start dotnet run --project Grapevine.Web\n    \n(Optional) Start a client application: \n\n    start dotnet run --project Grapevine.Cli\n    \n### 5. Develop!\n\nYou can now access the gRPC server at [http://localhost:5000](http://localhost:5000) or [https://localhost:5001](https://localhost:5001).\n\nThe web/SignalR server can be accessed at [http://localhost:5002](http://localhost:5002) or [https://localhost:5003](https://localhost:5003).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeter-mghendi%2Fgrapevine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeter-mghendi%2Fgrapevine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeter-mghendi%2Fgrapevine/lists"}