{"id":45902564,"url":"https://github.com/Norbert515/nocterm","last_synced_at":"2026-03-01T16:00:42.061Z","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-02-15T11:43:26.000Z","size":22149,"stargazers_count":254,"open_issues_count":13,"forks_count":16,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-02-17T05:55:54.226Z","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-02-16T08:16:05.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":29974315,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T15:41:30.362Z","status":"ssl_error","status_checked_at":"2026-03-01T15:37:07.343Z","response_time":124,"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":"2026-02-28T00:01:23.931Z","updated_at":"2026-03-01T16:00:42.055Z","avatar_url":"https://github.com/Norbert515.png","language":"Dart","funding_links":[],"categories":["Table of Contents"],"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[![Website](https://img.shields.io/badge/web-nocterm.dev-blue)](https://nocterm.dev)\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://nocterm.dev\"\u003e\u003cstrong\u003eWebsite\u003c/strong\u003e\u003c/a\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.5.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## Community\n\n### Packages\n\n| Package | Description |\n|---------|-------------|\n| [nocterm_bloc](https://pub.dev/packages/nocterm_bloc) | Bloc state management for Nocterm |\n| [nocterm_lints](https://pub.dev/packages/nocterm_lints) | IDE assists — wrap with, swap, move, convert to stateful/stateless |\n\n### Built with Nocterm\n\n| Project | Description |\n|---------|-------------|\n| [vide_cli](https://github.com/Norbert515/vide_cli) | Multi-agent coding IDE for the terminal |\n| [nocterm_3d](https://github.com/Norbert515/nocterm_3d) | Experimental 3D renderer for the terminal |\n| [cow](https://github.com/jolexxa/cow) | Local LLM chat client powered by llama.cpp |\n| [snake](https://github.com/mrgnhnt96/snake) | Classic Snake for the command line |\n| [minesweeper](https://github.com/mrgnhnt96/minesweeper) | Classic Minesweeper for the command line |\n\n\u003e Built something with Nocterm? [Open an issue](https://github.com/norbert515/nocterm/issues) to get it listed here!\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"}