{"id":31033228,"url":"https://github.com/norbert515/nocterm","last_synced_at":"2026-02-09T21:17:36.959Z","repository":{"id":313092139,"uuid":"1050008627","full_name":"Norbert515/nocterm","owner":"Norbert515","description":"A powerful, Flutter-inspired Terminal User Interface framework for building beautiful command-line applications in Dart.","archived":false,"fork":false,"pushed_at":"2026-01-30T17:16:59.000Z","size":21940,"stargazers_count":225,"open_issues_count":10,"forks_count":15,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-31T07:44:45.189Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://nocterm.dev","language":"Dart","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/Norbert515.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":"2025-09-03T20:14:16.000Z","updated_at":"2026-01-30T17:32:44.000Z","dependencies_parsed_at":"2025-09-24T08:20:16.317Z","dependency_job_id":"584e60c6-9877-49c4-842b-f5231e539000","html_url":"https://github.com/Norbert515/nocterm","commit_stats":null,"previous_names":["norbert515/nocterm"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/Norbert515/nocterm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Norbert515%2Fnocterm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Norbert515%2Fnocterm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Norbert515%2Fnocterm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Norbert515%2Fnocterm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Norbert515","download_url":"https://codeload.github.com/Norbert515/nocterm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Norbert515%2Fnocterm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29281707,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T19:05:41.198Z","status":"ssl_error","status_checked_at":"2026-02-09T19:05:37.449Z","response_time":56,"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":"2025-09-14T01:39:55.075Z","updated_at":"2026-02-09T21:17:36.918Z","avatar_url":"https://github.com/Norbert515.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CI](https://github.com/norbert515/nocterm/actions/workflows/ci.yml/badge.svg)](https://github.com/norbert515/nocterm/actions/workflows/ci.yml)\n[![Pub Version](https://img.shields.io/pub/v/nocterm)](https://pub.dev/packages/nocterm)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n[![Documentation](https://img.shields.io/badge/docs-docs.nocterm.dev-blue)](https://docs.nocterm.dev)\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://docs.nocterm.dev\"\u003e\u003cstrong\u003eDocs\u003c/strong\u003e\u003c/a\u003e |\n\u003ca href=\"https://pub.dev/packages/nocterm\"\u003e\u003cstrong\u003epub.dev\u003c/strong\u003e\u003c/a\u003e |\n\u003ca href=\"#quick-start\"\u003e\u003cstrong\u003eQuick Start\u003c/strong\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n**If you know Flutter, you know Nocterm.** Build terminal UIs with the same patterns—`StatefulComponent`, `setState()`, `Column`, `Row`, and hot reload.\n\n![Nocterm Demo](doc/assets/demo.gif)\n\n\n## Installation\n\n```yaml\ndependencies:\n  nocterm: ^0.4.1\n```\n\n## Quick Start\n\n```dart\nimport 'package:nocterm/nocterm.dart';\n\nvoid main() {\n  runApp(const Counter());\n}\n\nclass Counter extends StatefulComponent {\n  const Counter({super.key});\n\n  @override\n  State\u003cCounter\u003e createState() =\u003e _CounterState();\n}\n\nclass _CounterState extends State\u003cCounter\u003e {\n  int _count = 0;\n\n  @override\n  Component build(BuildContext context) {\n    return Focusable(\n      focused: true,\n      onKeyEvent: (event) {\n        if (event.logicalKey == LogicalKey.space) {\n          setState(() =\u003e _count++);\n          return true;\n        }\n        return false;\n      },\n      child: Center(\n        child: Text('Count: $_count'),\n      ),\n    );\n  }\n}\n```\n\nRun with hot reload:\n\n```bash\ndart --enable-vm-service your_app.dart\n```\n\n## Testing\n\nTest your TUI components just like Flutter widgets:\n\n```dart\nawait testNocterm('counter test', (tester) async {\n  await tester.pumpComponent(Counter());\n  await tester.sendKey(LogicalKey.space);\n\n  expect(tester.terminalState, containsText('Count: 1'));\n});\n```\n\n## Documentation\n\nSee the [full documentation](https://docs.nocterm.dev) for guides on components, state management, testing, and more.\n\n## Contributing\n\n### Git Hooks\n\nWe use [hooksman](https://pub.dev/packages/hooksman) to manage git hooks. To install the hooks, run:\n\n```bash\ndart run hooksman\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnorbert515%2Fnocterm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnorbert515%2Fnocterm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnorbert515%2Fnocterm/lists"}