{"id":22845165,"url":"https://github.com/hir4k/siimple","last_synced_at":"2026-02-02T15:37:01.037Z","repository":{"id":266311920,"uuid":"897958338","full_name":"hir4k/siimple","owner":"hir4k","description":"Simple But Powerful NoSQL Database For Flutter","archived":false,"fork":false,"pushed_at":"2024-12-11T15:43:59.000Z","size":121,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-31T05:28:36.815Z","etag":null,"topics":["dart","database","flutter","isar","sqlite"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/siimple","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/hir4k.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}},"created_at":"2024-12-03T14:39:13.000Z","updated_at":"2024-12-11T15:44:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"af25950c-f371-49c3-b006-971fa43bb88a","html_url":"https://github.com/hir4k/siimple","commit_stats":null,"previous_names":["hir4k/simple"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hir4k%2Fsiimple","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hir4k%2Fsiimple/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hir4k%2Fsiimple/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hir4k%2Fsiimple/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hir4k","download_url":"https://codeload.github.com/hir4k/siimple/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252802307,"owners_count":21806472,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","database","flutter","isar","sqlite"],"created_at":"2024-12-13T03:15:54.608Z","updated_at":"2026-02-02T15:36:56.017Z","avatar_url":"https://github.com/hir4k.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n![Siimple Logo](assets/siimple-logo-x180.png)\n\n\n# Siimple ✨\n\nSiimple is a lightweight, NoSQL database built for Flutter and Dart applications. It is designed to be simple, efficient, and easy to integrate into your projects. Perfect for offline-first apps or single-user environments.\n\n\u003e ⚠️ **Warning:** This package is not ready for production use yet. The API may change at any time.\n\n\n```dart\nimport 'package:siimple/siimple.dart';\n\nvoid main() async {\n  // Initialize database\n  WidgetsFlutterBinding.ensureInitialized();\n  final dir = await getApplicationDocumentsDirectory();\n  final db = Siimple(path: dir.path);\n  await db.initialize();\n  \n  final todoCollection = db.collection('todos');\n\n  // Add some data\n  await todoCollection.create({'text': 'Siimple is easy'});\n\n  // Get all todos\n  await todoCollection.query().findAll();\n\n  // Get todos by some conditions\n  await todoCollection.query()\n    .where(\"text__contains\", \"t\")\n    .limit(5)\n    .findAll();\n}\n```\n\nVisit github repository and see example folder for more details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhir4k%2Fsiimple","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhir4k%2Fsiimple","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhir4k%2Fsiimple/lists"}