{"id":22072612,"url":"https://github.com/broxus/nekoton_repository","last_synced_at":"2026-02-05T19:01:49.429Z","repository":{"id":176363435,"uuid":"657114701","full_name":"broxus/nekoton_repository","owner":"broxus","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-03T18:35:21.000Z","size":1064,"stargazers_count":3,"open_issues_count":1,"forks_count":2,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-02-04T07:52:30.260Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/broxus.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":"2023-06-22T10:55:02.000Z","updated_at":"2026-01-26T09:31:32.000Z","dependencies_parsed_at":"2023-09-26T13:10:21.133Z","dependency_job_id":"cc0e12a2-1c69-470a-98d0-f0b1e77b3359","html_url":"https://github.com/broxus/nekoton_repository","commit_stats":null,"previous_names":["broxus/nekoton_repository"],"tags_count":203,"template":false,"template_full_name":null,"purl":"pkg:github/broxus/nekoton_repository","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/broxus%2Fnekoton_repository","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/broxus%2Fnekoton_repository/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/broxus%2Fnekoton_repository/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/broxus%2Fnekoton_repository/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/broxus","download_url":"https://codeload.github.com/broxus/nekoton_repository/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/broxus%2Fnekoton_repository/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29130112,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T18:55:47.139Z","status":"ssl_error","status_checked_at":"2026-02-05T18:55:04.010Z","response_time":65,"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":[],"created_at":"2024-11-30T21:13:55.591Z","updated_at":"2026-02-05T19:01:49.399Z","avatar_url":"https://github.com/broxus.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nekoton Repository\n\n[![style: very good analysis][very_good_analysis_badge]][very_good_analysis_link]\n[![Powered by Mason](https://img.shields.io/endpoint?url=https%3A%2F%2Ftinyurl.com%2Fmason-badge)](https://github.com/felangel/mason)\n[![License: MIT][license_badge]][license_link]\n\nNekoton repository package\n\n## Installation 💻\n\n**❗ In order to start using Nekoton Repository you must have the [Flutter SDK][flutter_install_link] installed on your machine.**\n\nAdd [nekoton_repository][pubdev_link] to your `pubspec.yaml`:\n\n```yaml\ndependencies:\n  nekoton_repository:\n```\n\n## Basic usage 🛠\n\nSetup DI:\n\n```dart\n@InjectableInit(  \n  externalPackageModulesBefore: [\n    ExternalModule(NekotonRepositoryPackageModule),\n  ],\n)  \nvoid configureDependencies() =\u003e getIt.init();  \n```\n\nInit:\n\n```dart\nFuture\u003cvoid\u003e configureNekoton() async {\n  final nekotonRepository = inject\u003cNekotonRepository\u003e();\n\n  await nekotonRepository.setupNekotonAndStorage(\n    storage: inject\u003cNekotonStorageService\u003e(),\n  );\n}\n```\n\n## Melos magic 🪄\n\nUsing [melos](https://melos.invertase.dev/) makes it very easy to work with the project, so enjoy.\n\nYou can run any job interactively run running `melos run` and selecting needed case or directly (e.g. `melos run test`).\n\n### Bootstrap 🏁\n\nMelos takes care about dependencies of all packages, including managing of local-generated library version. So, just run:\n\n```\nmelos bs\n```\n\n### Codegen 🦾\n\nThis thing will run all code generators for all packages:\n\n```\n$ melos run codegen\n```\n\n### Clean up 🧹\n\nJust run commands below to clean all, including build directories and flutter projects.\n\n```\nmelos clean\n```\n\n### Tests ✔️\n\nYou can run all tests at one by running this command.\n\n```\nmelos run test\n```\n\n### Code 📊\n\nYou can run code analysis:\n\n```\nmelos run analyze\n```\n\n### Code format 🗃️\n\n`melos run check-format` will check, `melos run format` will fix dart code formatting.\n\n```\nmelos run check-format\nmelos run format\n```\n\n### Prepare to commit 🤝🏻\n\n`melos run check-all` will ckeck, analyze and run all tests.\n\n```\nmelos run check-all\n```\n\n## Conventional Commits ❤️\n\n[This magic](https://melos.invertase.dev/guides/automated-releases#versioning) will update version and build our library automatically using commit messages and tags. [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0) is a lightweight convention on top of commit messages.\n\n## Version 🏷️\n\nPackage version control is done by melos. It runs by gh action 'Create version PR' ```melos version -a --yes```.\n\n## Continuous Integration 🤖\n\nNekoton Repository comes with a built-in [GitHub Actions workflow][github_actions_link] powered by [Very Good Workflows][very_good_workflows_link] but you can also add your preferred CI/CD solution.\n\nOut of the box, on each pull request and push, the CI `formats`, `lints`, and `tests` the code. This ensures the code remains consistent and behaves correctly as you add functionality or make changes. The project uses [Very Good Analysis][very_good_analysis_link] for a strict set of analysis options used by our team. Code coverage is enforced using the [Very Good Workflows][very_good_coverage_link].\n\n\n[flutter_install_link]: https://docs.flutter.dev/get-started/install\n[github_actions_link]: https://docs.github.com/en/actions/learn-github-actions\n[license_badge]: https://img.shields.io/badge/license-MIT-blue.svg\n[license_link]: https://opensource.org/licenses/MIT\n[very_good_analysis_badge]: https://img.shields.io/badge/style-very_good_analysis-B22C89.svg\n[very_good_analysis_link]: https://pub.dev/packages/very_good_analysis\n[very_good_coverage_link]: https://github.com/marketplace/actions/very-good-coverage\n[very_good_workflows_link]: https://github.com/VeryGoodOpenSource/very_good_workflows\n[pubdev_link]: https://pub.dev/packages/nekoton_repository\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbroxus%2Fnekoton_repository","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbroxus%2Fnekoton_repository","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbroxus%2Fnekoton_repository/lists"}