{"id":16254461,"url":"https://github.com/tim-smart/rxjs-iterable","last_synced_at":"2026-02-09T20:33:04.532Z","repository":{"id":65472958,"uuid":"326263450","full_name":"tim-smart/rxjs-iterable","owner":"tim-smart","description":null,"archived":false,"fork":false,"pushed_at":"2022-03-10T23:42:52.000Z","size":85,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-09T12:44:39.944Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tim-smart.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-01-02T20:15:40.000Z","updated_at":"2023-07-25T21:48:27.000Z","dependencies_parsed_at":"2023-01-25T12:01:25.111Z","dependency_job_id":null,"html_url":"https://github.com/tim-smart/rxjs-iterable","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/tim-smart/rxjs-iterable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-smart%2Frxjs-iterable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-smart%2Frxjs-iterable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-smart%2Frxjs-iterable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-smart%2Frxjs-iterable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tim-smart","download_url":"https://codeload.github.com/tim-smart/rxjs-iterable/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tim-smart%2Frxjs-iterable/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270932566,"owners_count":24670240,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"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":[],"created_at":"2024-10-10T15:22:15.449Z","updated_at":"2026-02-09T20:33:04.480Z","avatar_url":"https://github.com/tim-smart.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rxjs-iterable\n\nCreate observables from iterables with backpressure support.\n\n## Usage\n\n```typescript\nimport * as Fs from \"fs\";\nimport * as RxOp from \"rxjs/operators\";\nimport * as RxI from \"rxjs-iterable\";\n\nconst CONCURRENCY = 2;\n\nconst [file$, push] = RxI.from\u003cBuffer\u003e(Fs.createReadStream(process.argv[2]), {\n  // How many chunks of data do we want to initially consume?\n  initialCount: CONCURRENCY,\n});\n\nfile$\n  .pipe(\n    RxOp.map((b) =\u003e b.toString()),\n\n    // Call push to indicate we are ready to consume more data\n    RxOp.tap(push),\n  )\n  .subscribe(console.log);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftim-smart%2Frxjs-iterable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftim-smart%2Frxjs-iterable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftim-smart%2Frxjs-iterable/lists"}