{"id":50416169,"url":"https://github.com/neabytelab/superwatcher","last_synced_at":"2026-05-31T06:01:46.355Z","repository":{"id":361377953,"uuid":"1254183934","full_name":"NeaByteLab/Superwatcher","owner":"NeaByteLab","description":"Zero-dependency Deno file watcher that debounces filesystem events into batched callbacks with ignore patterns and write stability detection.","archived":false,"fork":false,"pushed_at":"2026-05-30T11:11:53.000Z","size":38,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T12:11:01.270Z","etag":null,"topics":["atomic-writes","batch-events","debounce","deno","deno-native","developer-tools","event-batching","file-monitoring","file-system-events","file-watcher","filesystem","hot-reload","ignore-filters","jsr","realtime","recursive-watch","typescript","watch-files","write-stability","zero-dependencies"],"latest_commit_sha":null,"homepage":"https://jsr.io/@neabyte/superwatcher","language":"TypeScript","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/NeaByteLab.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,"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":"2026-05-30T08:40:36.000Z","updated_at":"2026-05-30T11:11:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/NeaByteLab/Superwatcher","commit_stats":null,"previous_names":["neabytelab/superwatcher"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/NeaByteLab/Superwatcher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FSuperwatcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FSuperwatcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FSuperwatcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FSuperwatcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NeaByteLab","download_url":"https://codeload.github.com/NeaByteLab/Superwatcher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FSuperwatcher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33720897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"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":["atomic-writes","batch-events","debounce","deno","deno-native","developer-tools","event-batching","file-monitoring","file-system-events","file-watcher","filesystem","hot-reload","ignore-filters","jsr","realtime","recursive-watch","typescript","watch-files","write-stability","zero-dependencies"],"created_at":"2026-05-31T06:01:45.664Z","updated_at":"2026-05-31T06:01:46.349Z","avatar_url":"https://github.com/NeaByteLab.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align='center'\u003e\n\n# Superwatcher\n\nZero-dependency Deno file watcher with debounced batch event callbacks\n\n[![Deno](https://img.shields.io/badge/deno-%3E%3D2.5.4-ffcb00?logo=deno\u0026logoColor=000000)](https://deno.com) [![Module type: Deno/ESM](https://img.shields.io/badge/module%20type-deno%2Fesm-brightgreen)](https://github.com/NeaByteLab/Superwatcher) [![JSR](https://jsr.io/badges/@neabyte/superwatcher)](https://jsr.io/@neabyte/superwatcher) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\n\u003c/div\u003e\n\n## Features\n\n- **Zero dependencies** - No external packages, built entirely on Deno native file system APIs.\n- **Debounced batch events** - Groups rapid file changes into one batched callback per flush cycle.\n- **Ignore filters** - Skips unwanted paths using string suffix, RegExp, or custom function matchers.\n- **Write stability** - Delays event emission until file size stops changing after large writes.\n- **Atomic write detection** - Collapses delete-then-recreate within debounce window into single modify event.\n- **Multi-path support** - Watches any combination of directories and individual files in one instance.\n- **Recursive control** - Disables subdirectory watching when `recursive: false` is set on directories.\n- **Error isolation** - Catches thrown errors inside `onChange` callback without stopping the watcher.\n\n## Installation\n\n\u003e [!NOTE]\n\u003e **Prerequisites:** Deno \u003e= 2.5.4 (install from [deno.com](https://deno.com/)).\n\n**Deno (JSR):**\n\n```bash\ndeno add jsr:@neabyte/superwatcher\n```\n\nRead [docs/README.md](docs/README.md) for full documentation.\n\n## Testing\n\n**Type check** - format, lint, and type-check:\n\n```bash\ndeno task check\n```\n\n**Unit tests** - format/lint tests and run all tests:\n\n```bash\ndeno task test\n```\n\n- Tests live under `tests/` (utils and watcher tests).\n- The test task uses `--allow-read`, `--allow-write`, and `--allow-env`.\n\n## License\n\nThis project is licensed under the MIT license. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneabytelab%2Fsuperwatcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneabytelab%2Fsuperwatcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneabytelab%2Fsuperwatcher/lists"}