{"id":51475,"library":"gorilla-rpc","title":"Gorilla RPC","description":"A foundation for RPC over HTTP services, providing access to exported methods of an object through HTTP requests with support for multiple codecs.","status":"active","version":"1.2.1","language":"go","source_language":null,"source_url":"https://github.com/gorilla/rpc","tags":["rpc","http","json","gorilla"],"install":[{"cmd":"go get github.com/gorilla/rpc","lang":"bash","label":"Install github.com/gorilla/rpc"}],"dependencies":[],"imports":[{"symbol":"rpc","correct":"github.com/gorilla/rpc"}],"quickstart":{"code":"package main\n\nimport (\n\t\"net/http\"\n\t\"github.com/gorilla/rpc\"\n\t\"github.com/gorilla/rpc/json\"\n)\n\ntype HelloService struct{}\n\nfunc (h *HelloService) Say(r *http.Request, args *struct{Name string}, reply *struct{Message string}) error {\n\treply.Message = \"Hello, \" + args.Name\n\treturn nil\n}\n\nfunc main() {\n\ts := rpc.NewServer()\n\ts.RegisterCodec(json.NewCodec(), \"application/json\")\n\ts.RegisterService(new(HelloService), \"\")\n\thttp.Handle(\"/rpc\", s)\n\thttp.ListenAndServe(\":8080\", nil)\n}","lang":"go","description":"Set up a JSON RPC server with a HelloService"},"warnings":[],"env_vars":null,"search_vec":"'access':11 'codec':25 'export':13 'foundat':4 'gorilla':1,29 'http':8,19,27 'json':28 'method':14 'multipl':24 'object':17 'provid':10 'request':20 'rpc':2,6,26 'servic':9 'support':22","created_at":"2026-06-15T06:16:28.547356+00:00","updated_at":"2026-06-15T06:16:28.547356+00:00","problems":[],"ecosystem":"go","meta_description":null,"install_score":null,"quickstart_score":null,"quickstart_tag":null,"pypi_latest":null,"cli_name":null,"cli_version":null,"type":"library","homepage":"https://github.com/gorilla/rpc","github":"https://github.com/gorilla/rpc","docs":"https://pkg.go.dev/github.com/gorilla/rpc#section-documentation","changelog":null,"pypi":null,"npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"categories":["networking"],"base_url":null,"auth_type":null,"provenance":{"verified_status":null,"verified_at":null,"last_verified":"2026-06-15","next_check":"2026-12-12","install_tag":null}}