{"id":24783460,"url":"https://github.com/j0rgeserran0/netcoreconf_2021","last_synced_at":"2026-04-27T12:03:29.921Z","repository":{"id":81626503,"uuid":"341189842","full_name":"J0rgeSerran0/NetCoreConf_2021","owner":"J0rgeSerran0","description":"Demos of the talk I did in the Virtual NetCoreConf 2021 in Spain","archived":false,"fork":false,"pushed_at":"2021-02-28T14:48:35.000Z","size":2866,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-24T06:38:59.794Z","etag":null,"topics":["2021","bidirectional-streaming-rpc","client-streaming-rpc","csharp","grpc","net5","netcore3","netcoreconf","protobuf","server-streaming-rpc","talk","unary-rpc"],"latest_commit_sha":null,"homepage":"","language":"C#","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/J0rgeSerran0.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}},"created_at":"2021-02-22T12:16:07.000Z","updated_at":"2021-02-28T15:30:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"85d302e2-e991-47fc-a6c5-4a180782ffe5","html_url":"https://github.com/J0rgeSerran0/NetCoreConf_2021","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/J0rgeSerran0/NetCoreConf_2021","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/J0rgeSerran0%2FNetCoreConf_2021","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/J0rgeSerran0%2FNetCoreConf_2021/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/J0rgeSerran0%2FNetCoreConf_2021/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/J0rgeSerran0%2FNetCoreConf_2021/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/J0rgeSerran0","download_url":"https://codeload.github.com/J0rgeSerran0/NetCoreConf_2021/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/J0rgeSerran0%2FNetCoreConf_2021/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32335298,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"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":["2021","bidirectional-streaming-rpc","client-streaming-rpc","csharp","grpc","net5","netcore3","netcoreconf","protobuf","server-streaming-rpc","talk","unary-rpc"],"created_at":"2025-01-29T12:17:12.899Z","updated_at":"2026-04-27T12:03:29.906Z","avatar_url":"https://github.com/J0rgeSerran0.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Logo](resources/images/logo.png)\n\n\u003e Demos of the talk I did in the Virtual **[NetCoreConf 2021](https://netcoreconf.com/)** in Spain (26th - 27th of February)\n\n\n# **gRPC - Introducción a desarrolladores ASP.NET Core**\n\n## **Presentation (pdf in Spanish)**\n\n[NetCoreConf 2021 - Presentation](presentation.pdf)\n\n## **Samples**\n\n### **[GrpcHelloWorld](src/GrpcHelloWorld)**\n \n\u003e Typical gRPC *Hello World* sample that is shown in the talk (using **Unary**)\n```\nClient =\u003e .NET Core 3.1\nServer =\u003e .NET 5\n```\n\n[protobuf file](src/GrpcHelloWorld/GrpcHelloWorldService/Protos/greet.proto)\n\n**Startup.cs**\n\nImportant parts in the sample:\n\n```csharp\npublic void ConfigureServices(IServiceCollection services)\n{\n    services.AddGrpc();\n}\n\npublic void Configure(IApplicationBuilder app, IWebHostEnvironment env)\n{\n    // MORE CODE HERE\n\n    app.UseStaticFiles();\n    app.UseRouting();\n\n    app.UseEndpoints(endpoints =\u003e\n    {\n        endpoints.MapGrpcService\u003cGreeterService\u003e();\n\n        // MORE CODE HERE\n    });\n}\n```\n\n\n### **[GrpcDemo](src/GrpcDemo)**\n\u003e gRPC sample that is shown in the talk (using **Unary, Server Streaming, Client Streaming, Bidirectional Streaming**)\n```\nClient =\u003e .NET 5\nServer =\u003e .NET 5\n```\n\n[protobuf file](src/GrpcDemo/GrpcDemoService/Protos/store.proto)\n\n**Startup.cs**\n\nImportant parts in the sample:\n\n```csharp\npublic void ConfigureServices(IServiceCollection services)\n{\n    services.AddGrpc();\n    services.AddSingleton\u003cStoreRepository\u003e();\n}\n\npublic void Configure(IApplicationBuilder app, IWebHostEnvironment env)\n{\n    // MORE CODE HERE\n\n    app.UseRouting();\n\n    app.UseEndpoints(endpoints =\u003e\n    {\n        endpoints.MapGrpcService\u003cStoreService\u003e();\n\n        // MORE CODE HERE\n    });\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj0rgeserran0%2Fnetcoreconf_2021","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fj0rgeserran0%2Fnetcoreconf_2021","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj0rgeserran0%2Fnetcoreconf_2021/lists"}