{"id":20096357,"url":"https://github.com/nomad-software/stream","last_synced_at":"2026-05-13T19:33:06.612Z","repository":{"id":164877313,"uuid":"640239630","full_name":"nomad-software/stream","owner":"nomad-software","description":"Generic stream processors written in Go.","archived":false,"fork":false,"pushed_at":"2025-10-16T17:36:36.000Z","size":61,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-17T20:19:05.302Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","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/nomad-software.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}},"created_at":"2023-05-13T12:44:00.000Z","updated_at":"2025-10-16T17:36:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"ece03b6a-7587-44e4-9dc6-2c0cc4da1297","html_url":"https://github.com/nomad-software/stream","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/nomad-software/stream","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nomad-software%2Fstream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nomad-software%2Fstream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nomad-software%2Fstream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nomad-software%2Fstream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nomad-software","download_url":"https://codeload.github.com/nomad-software/stream/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nomad-software%2Fstream/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32997659,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"last_error":"SSL_read: 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-13T16:58:37.214Z","updated_at":"2026-05-13T19:33:06.589Z","avatar_url":"https://github.com/nomad-software.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# stream\n\n**Generic stream processors written in Go**\n\n---\n\n## Description\n\nThis is a collection of generic, reusable, channel based stream processors that perform various operations on channels and their values. It's inspired by [component based programming](https://wiki.dlang.org/Component_programming_with_ranges) and [ranges](https://www.informit.com/articles/printerfriendly/1407357) popularised by the [D language](https://dlang.org/). Each operation is designed to be concurrent and if possible will execute in parallel. This is kind of an experiment to see how far I can leverage this. I've no idea if this is even useful.\n\n## Example\n\n```go\npackage main\n\nimport (\n\t\"os\"\n)\n\nfunc join(a, b string) string {\n\treturn a + \" \" + b\n}\n\nfunc main() {\n\ttext := \"Lorem adipiscing elit ipsum sed neque dolor non libero sit consequat magna amet placerat bibendum\"\n\n\tFromString(text, \" \").\n\t\tStride(3).\n\t\tTake(2).\n\t\tReduce(join).\n\t\tWriteTo(os.Stdout)\n\n\t// Output: Lorem ipsum\n}\n```\n\n## Documentation\n\nhttps://pkg.go.dev/github.com/nomad-software/stream\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnomad-software%2Fstream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnomad-software%2Fstream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnomad-software%2Fstream/lists"}