{"id":37231533,"url":"https://github.com/mongorpc/mongorpc-dart","last_synced_at":"2026-01-15T03:44:27.096Z","repository":{"id":332246326,"uuid":"425306322","full_name":"mongorpc/mongorpc-dart","owner":"mongorpc","description":"mongorpc client for flutter","archived":false,"fork":false,"pushed_at":"2026-01-05T13:09:29.000Z","size":236,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-13T05:26:40.119Z","etag":null,"topics":["dart","flutt","flutter","grpc","mongodb","mongorpc","mongorpc-client"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/mongorpc","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mongorpc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-11-06T17:30:30.000Z","updated_at":"2026-01-05T13:09:33.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mongorpc/mongorpc-dart","commit_stats":null,"previous_names":["mongorpc/mongorpc-dart"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mongorpc/mongorpc-dart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongorpc%2Fmongorpc-dart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongorpc%2Fmongorpc-dart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongorpc%2Fmongorpc-dart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongorpc%2Fmongorpc-dart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mongorpc","download_url":"https://codeload.github.com/mongorpc/mongorpc-dart/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongorpc%2Fmongorpc-dart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28413470,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T05:26:33.345Z","status":"ssl_error","status_checked_at":"2026-01-14T05:21:57.251Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["dart","flutt","flutter","grpc","mongodb","mongorpc","mongorpc-client"],"created_at":"2026-01-15T03:44:26.473Z","updated_at":"2026-01-15T03:44:27.088Z","avatar_url":"https://github.com/mongorpc.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mongorpc_dart\n\nDart client for MongoRPC - a gRPC proxy for MongoDB.\n\n## Installation\n\nAdd dependencies to your `pubspec.yaml`:\n\n```yaml\ndependencies:\n  mongorpc_dart:\n    git: https://github.com/mongorpc/mongorpc-dart.git\n```\n\n## Quick Start\n\n```dart\nimport 'package:mongorpc_dart/mongorpc_dart.dart';\n\nvoid main() async {\n  // Connect\n  final client = MongoRPC('localhost', 50051);\n\n  final users = client.database('mydb').collection('users');\n\n  // Insert\n  final id = await users.insertOne({\n    'name': 'Alice',\n    'age': 30,\n  });\n\n  // Find by ID\n  final doc = await users.findById(id);\n  print(doc);\n\n  // Find with filter\n  final results = await users.find({\n    'age': {'$gte': 21},\n  });\n\n  // Update\n  await users.updateById(id, {\n    '\\$set': {'verified': true},\n  });\n\n  // Delete\n  await users.deleteById(id);\n\n  await client.close();\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmongorpc%2Fmongorpc-dart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmongorpc%2Fmongorpc-dart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmongorpc%2Fmongorpc-dart/lists"}