{"id":25458994,"url":"https://github.com/gasperlf/grpc-blog","last_synced_at":"2026-04-15T05:31:58.252Z","repository":{"id":219366595,"uuid":"289097393","full_name":"gasperlf/grpc-blog","owner":"gasperlf","description":"Blog example using gRPC and Mongo","archived":false,"fork":false,"pushed_at":"2020-08-25T15:54:07.000Z","size":280,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-17T00:36:06.690Z","etag":null,"topics":["docker","docker-compose","gradle","gradle-java","grpc","java11","mongodb-database"],"latest_commit_sha":null,"homepage":"","language":"Java","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/gasperlf.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}},"created_at":"2020-08-20T19:52:59.000Z","updated_at":"2020-08-25T15:54:09.000Z","dependencies_parsed_at":"2024-01-27T00:53:26.922Z","dependency_job_id":null,"html_url":"https://github.com/gasperlf/grpc-blog","commit_stats":null,"previous_names":["gasperlf/grpc-blog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gasperlf/grpc-blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasperlf%2Fgrpc-blog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasperlf%2Fgrpc-blog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasperlf%2Fgrpc-blog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasperlf%2Fgrpc-blog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gasperlf","download_url":"https://codeload.github.com/gasperlf/grpc-blog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasperlf%2Fgrpc-blog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31828531,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"online","status_checked_at":"2026-04-15T02:00:06.175Z","response_time":63,"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":["docker","docker-compose","gradle","gradle-java","grpc","java11","mongodb-database"],"created_at":"2025-02-18T03:29:17.908Z","updated_at":"2026-04-15T05:31:58.225Z","avatar_url":"https://github.com/gasperlf.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gRPC-blog\n\nExample API using gRPC\n\n# Dependencies\n\nHere in the GitHub you can find all information how to implement gRPC project\nhttps://github.com/grpc/grpc-java\n\nfor reflection check \n\nhttps://github.com/grpc/grpc-java/blob/master/documentation/server-reflection-tutorial.md\n\n### Evans gRPC CLI \n\nfollow all instructions in https://github.com/ktr0731/evans\n\n#### Connect to evans CLI\n\n_`evans -r --host localhost -p 50051 repl`_\n\n#### Show packages\n\n_`blog.BlogService@localhost:50051\u003e show package\n +-------------------------+\n |         PACKAGE         |\n +-------------------------+\n | blog                    |\n | grpc.reflection.v1alpha |\n +-------------------------+\n `_\n \n#### Choose [api]\n \n_`package blog`_\n\n#### Show services\n_`\nblog@localhost:50051\u003e show service\n+-------------+------------+-------------------+--------------------+\n|   SERVICE   |    RPC     |   REQUEST TYPE    |   RESPONSE TYPE    |\n+-------------+------------+-------------------+--------------------+\n| BlogService | CreateBlog | BlogCreateRequest | BlogCreateResponse |\n| BlogService | ReadBlog   | BlogReadRequest   | BlogReadResponse   |\n| BlogService | UpdateBlog | BlogUpdateRequest | BlogUpdateResponse |\n| BlogService | DeleteBlog | BlogDeleteRequest | BlogDeleteResponse |\n| BlogService | ListBlogs  | BlogListRequest   | BlogListResponse   |\n+-------------+------------+-------------------+--------------------+\n`_\n\n#### Show messages\n_`\nblog@localhost:50051\u003e show message\n+--------------------+\n|      MESSAGE       |\n+--------------------+\n| BlogCreateRequest  |\n| BlogCreateResponse |\n| BlogDeleteRequest  |\n| BlogDeleteResponse |\n| BlogListRequest    |\n| BlogListResponse   |\n| BlogReadRequest    |\n| BlogReadResponse   |\n| BlogUpdateRequest  |\n| BlogUpdateResponse |\n+--------------------+\n`_\n\n#### Calling endpoint \n\n_`blog@localhost:50051\u003e service BlogService\nblog.BlogService@localhost:50051\u003e call ListBlogs\n{\n  \"blog\": {\n    \"id\": \"5f383545354d3e4d0a532d23\",\n    \"author_id\": \"Lewis FLorez\",\n    \"title\": \"Hello updated\",\n    \"content\": \"Hello, my first call grpc\"\n  }\n}\n{\n  \"blog\": {\n    \"id\": \"5f3835a13b0f1b5b7ccc8da0\",\n    \"author_id\": \"Lewis FLorez\",\n    \"title\": \"Hello\",\n    \"content\": \"Hello, my first call grpc\"\n  }\n}\n{\n  \"blog\": {\n    \"id\": \"5f38595e3b0f1b5b7ccc8da1\",\n    \"author_id\": \"Sarher Jimenez\",\n    \"title\": \"Travelers in Spain\",\n    \"content\": \"New document about traveles in Spain\"\n  }\n}`_\n\n# Tools\n\n**BloomRPC**\nIt is like Postman to call server endpoints\n\nfollow instruction to install in your machine in\n\nhttps://github.com/uw-labs/bloomrpc\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgasperlf%2Fgrpc-blog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgasperlf%2Fgrpc-blog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgasperlf%2Fgrpc-blog/lists"}