{"id":19774727,"url":"https://github.com/umeshiscreative/avsqldebugger","last_synced_at":"2025-08-10T04:42:37.553Z","repository":{"id":56901234,"uuid":"209747796","full_name":"umeshiscreative/AVSQLDebugger","owner":"umeshiscreative","description":"A Simple Core Data Debugger that will look inside your apps DB","archived":false,"fork":false,"pushed_at":"2019-10-29T06:44:45.000Z","size":22950,"stargazers_count":31,"open_issues_count":0,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-10T04:42:34.661Z","etag":null,"topics":["apple","carthage","cocoapods","coredata","coredata-framework","coredata-model","coredatabase","database","ios","ios-app","ios-demo","ios-lib","ios-sdk","ios-swift","objective-c","sql","sqlite","sqlite-database"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/umeshiscreative.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-20T08:55:25.000Z","updated_at":"2023-09-22T08:11:35.000Z","dependencies_parsed_at":"2022-08-20T18:50:36.308Z","dependency_job_id":null,"html_url":"https://github.com/umeshiscreative/AVSQLDebugger","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/umeshiscreative/AVSQLDebugger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umeshiscreative%2FAVSQLDebugger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umeshiscreative%2FAVSQLDebugger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umeshiscreative%2FAVSQLDebugger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umeshiscreative%2FAVSQLDebugger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/umeshiscreative","download_url":"https://codeload.github.com/umeshiscreative/AVSQLDebugger/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umeshiscreative%2FAVSQLDebugger/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269677511,"owners_count":24457858,"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","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"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":["apple","carthage","cocoapods","coredata","coredata-framework","coredata-model","coredatabase","database","ios","ios-app","ios-demo","ios-lib","ios-sdk","ios-swift","objective-c","sql","sqlite","sqlite-database"],"created_at":"2024-11-12T05:13:43.930Z","updated_at":"2025-08-10T04:42:37.504Z","avatar_url":"https://github.com/umeshiscreative.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# AVSQLDebugger\nA Simple extension that will debug your Core Data inside iOS apps. Just use this extension and debug your database in your web browser.\n\n\u003cp align=\"left\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/swift-5-brightgreen.svg\" /\u003e\n        \u003cimg src=\"https://img.shields.io/badge/Platforms-iOS-blue.svg?style=flat\" /\u003e\n    \u003ca href=\"https://cocoapods.org/pods/AVSQLDebugger\"\u003e\n        \u003cimg src=\"https://img.shields.io/cocoapods/v/AVSQLDebugger.svg\" alt=\"CocoaPods\" /\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/Carthage/Carthage\"\u003e\n        \u003cimg src=\"https://img.shields.io/badge/carthage-compatible-4BC51D.svg?style=flat\" alt=\"Carthage\" /\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://opensource.org/licenses/MIT\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/License-MIT-yellow.svg\" alt=\"License\" /\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n\n# Usage\n## 👩‍💻 How to use\n\nYou can use this as the follows:\n\n```swift\nimport AVSQLDebugger\n  \nfunc application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -\u003e Bool {\n\n     //Initialize the Debugger in AppDelegate File with your container name and set your custom Port Number\n        \n     AVDebugger.sharedInstance.config(with: self, containerName: \"Example\", port: 8090)\n        \n     return true\n }\n\n```\n\nAnd make sure confirmation of **AVDebuggerProtocol** Protocol\n\n```swift\nimport AVSQLDebugger\n\n@UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate, AVDebuggerProtocol { ... }\n\n```\n\n### Check the console for server running of given port. Open this url in your web browser and see all the data inside your app.\n\n```bash\n------------------------------------------------------\n🎉 Server is up and running on port: 8090 🎉\n🎉 Copy and paste this url to your local browser. 🎉\n🚀🚀🚀\nhttp://127.0.0.0:8090/index.html\n🚀🚀🚀\n------------------------------------------------------\n```\n\n### Stop listening the server events\n\n```swift\n func applicationWillTerminate(_ application: UIApplication) {\n      // Called when the application is about to terminate. Save data if appropriate.\n      // Saves changes in the application's managed object context before the application terminates.\n      self.saveContext()\n      \n      //Stop Listening the server\n      AVDebugger.sharedInstance.stopListingServer()\n }\n```\n\n## 📲Installation\n\n#### Using [CocoaPods](https://cocoapods.org)\nTo install it, simply add the following line to your Podfile:\n\n```ruby\npod 'AVSQLDebugger', '~\u003e1.0.2'\n```\nThen Run\n\n```ruby\npod install\n```\n#### Using [Carthage](https://github.com/carthage)\n\nEdit your `Cartfile` and specify the dependency:\n\n```bash\ngithub \"umeshiscreative/AVSQLDebugger\"\n```\n### Seeing values\n\n\u003cimg src=https://raw.githubusercontent.com/umeshiscreative/AVSQLDebugger/master/Debug.png\u003e\n\n## ❤️ Contributing\n\nThis is an open source project, so feel free to contribute. How?\n- Open an [issue](https://github.com/umeshiscreative/AVSQLDebugger/issues/new).\n- Propose your own fixes, suggestions and open a pull request with the changes.\n\n## Author\n\nUmesh Verma\n\n## License\n\nAVSQLDebugger is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumeshiscreative%2Favsqldebugger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fumeshiscreative%2Favsqldebugger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumeshiscreative%2Favsqldebugger/lists"}