{"id":15388549,"url":"https://github.com/deebloo/rxjs-worker","last_synced_at":"2026-03-12T01:38:04.656Z","repository":{"id":71870473,"uuid":"62336131","full_name":"deebloo/rxjs-worker","owner":"deebloo","description":"Standard rxjs operators built to run in web workers","archived":false,"fork":false,"pushed_at":"2023-12-15T11:55:58.000Z","size":57,"stargazers_count":17,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-21T07:41:13.163Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/deebloo.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":"2016-06-30T19:10:09.000Z","updated_at":"2020-05-31T12:05:19.000Z","dependencies_parsed_at":"2024-10-19T04:03:55.207Z","dependency_job_id":null,"html_url":"https://github.com/deebloo/rxjs-worker","commit_stats":{"total_commits":41,"total_committers":1,"mean_commits":41.0,"dds":0.0,"last_synced_commit":"7344ee6782e5a4dd82b7829bd8ec49926f54fbad"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/deebloo/rxjs-worker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deebloo%2Frxjs-worker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deebloo%2Frxjs-worker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deebloo%2Frxjs-worker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deebloo%2Frxjs-worker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deebloo","download_url":"https://codeload.github.com/deebloo/rxjs-worker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deebloo%2Frxjs-worker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30412090,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T00:40:14.898Z","status":"ssl_error","status_checked_at":"2026-03-12T00:40:08.439Z","response_time":84,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":"2024-10-01T14:57:13.662Z","updated_at":"2026-03-12T01:38:04.643Z","avatar_url":"https://github.com/deebloo.png","language":"JavaScript","readme":"# rxjs-worker [![CircleCI](https://circleci.com/gh/deebloo/rxjs-worker.svg?style=svg)](https://circleci.com/gh/deebloo/rxjs-worker)\n\nRXJS extensions for adding web worker functionality via operators and observables\n\n## Observables\n\n### observable.fromWorker()\nCreate an observable from a webworker, path, or function\n```TS\n// web worker\nconst myWorker = new Worker('path/to/web-worker.js');\nconst observable1 = Observable.fromWorker(myWorker);\n\n// function\nconst observable2 = Observable.fromWorker(() =\u003e {\n  self.postMessage('Hello World');\n});\n\n// string\nconst observable3 = Observable.fromWorker('path/to/web-worker.js');\n```\n\n## Operators\n\n### observable.mapWorker()\nsimple map function that runs in a web worker\n```TS\nObservable\n  .from(['Hello World'])\n  .mapWorker(strng =\u003e {\n    return strng + ', I am from a worker.';\n  })\n  .subscribe(res =\u003e {\n    console.log(res); // Hello World, I am from a worker\n  });\n```\n\n### observable.filterWorker()\nreturns either the result or null\n```TS\nObservable\n  .from(['Hello World'])\n  .filterWorker(strng =\u003e {\n    return strng === 'Hello World';\n  })\n  .subscribe(res =\u003e {\n    console.log(res); // Hello World\n  });\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeebloo%2Frxjs-worker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeebloo%2Frxjs-worker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeebloo%2Frxjs-worker/lists"}