{"id":20059580,"url":"https://github.com/monix/monix-bio","last_synced_at":"2025-04-03T03:11:37.865Z","repository":{"id":36512903,"uuid":"224912761","full_name":"monix/monix-bio","owner":"monix","description":"Asynchronous data type with typed errors.","archived":false,"fork":false,"pushed_at":"2024-08-12T23:45:55.000Z","size":4922,"stargazers_count":82,"open_issues_count":28,"forks_count":26,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-24T07:56:05.126Z","etag":null,"topics":["cats-effect","functional-programming","monix","scala","typelevel"],"latest_commit_sha":null,"homepage":"https://bio.monix.io","language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/monix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2019-11-29T19:38:08.000Z","updated_at":"2025-02-27T13:13:15.000Z","dependencies_parsed_at":"2023-02-17T23:01:07.901Z","dependency_job_id":"7f0bfbd2-6eb3-4a99-add3-3d1062725fa3","html_url":"https://github.com/monix/monix-bio","commit_stats":{"total_commits":260,"total_committers":29,"mean_commits":8.96551724137931,"dds":0.5653846153846154,"last_synced_commit":"ac52b166e818798f9fb57eedf7804826012b3614"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monix%2Fmonix-bio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monix%2Fmonix-bio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monix%2Fmonix-bio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monix%2Fmonix-bio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/monix","download_url":"https://codeload.github.com/monix/monix-bio/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246927839,"owners_count":20856198,"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","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":["cats-effect","functional-programming","monix","scala","typelevel"],"created_at":"2024-11-13T13:08:31.338Z","updated_at":"2025-04-03T03:11:37.843Z","avatar_url":"https://github.com/monix.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Monix-BIO\n\n[![Maven Central](https://img.shields.io/maven-central/v/io.monix/monix-bio_2.12.svg)](https://search.maven.org/search?q=g:io.monix%20AND%20a:monix-bio_2.12)\n[![Discord](https://img.shields.io/discord/632277896739946517.svg?label=\u0026logo=discord\u0026logoColor=ffffff\u0026color=404244\u0026labelColor=6A7EC2)](https://discord.gg/wsVZSEx4Nw)\n[![Join the chat at https://gitter.im/monix/monix-bio](https://badges.gitter.im/monix/monix-bio.svg)](https://gitter.im/monix/monix-bio?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n[![Snapshot](https://img.shields.io/nexus/s/https/oss.sonatype.org/io.monix/monix-bio_2.12.svg)](https://oss.sonatype.org/content/repositories/snapshots/io/monix/monix-bio_2.12/)\n\nAsynchronous data type with typed errors.\nAn enhanced version of [monix.eval.Task](https://monix.io/api/3.1/monix/eval/Task.html).\n\n[Visit Documentation Website](https://monix.github.io/monix-bio/)\n\n## The latest version\n\nThe latest stable version, compatible with Monix 3.x, Cats 2.x and Cats-Effect 2.x:\n\n```scala\nlibraryDependencies += \"io.monix\" %% \"monix-bio\" % \"1.2.0\"\n```\nPublished for ScalaJS1.x, Scala 2.12, 2.13, and 3.0.0.\n\n## Roadmap\n\n- Complete documentation (see [#133](https://github.com/monix/monix-bio/issues/113) for current progress)\n- `reactive` module to use `monix.reactive.Observable` with `monix.bio.IO`\n- built-in interop with `monix.eval.Task` without any imports\n- (?) `UIO`-friendy builders for `cats.effect.concurrent` and `monix-catnap`\n- (?) `Coeval` with typed errors\n\n## Contributing\n\nI will really appreciate feedback, bugs and complaints about the project.\n\nIf you'd like to contribute code then look for issues tagged with [good first issue](https://github.com/monix/monix-bio/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22)\nor just ask me on gitter and I should be able to find something regardless of your level of expertise. :)\n\nI'm happy to mentor anyone interested in contributing.\n\n## Credits\n\nMost of the code comes from [Monix](https://github.com/monix/monix) which was customized to include support for error type parameter directly in the internals.\n\nThe idea of a second type parameter comes from [ZIO](https://github.com/zio/zio). Its implementation and API for error handling with two error channels served as an inspiration to the entire idea and some of the solutions. A lot of the benchmarks also come from their repository.\n\n[Cats-bio](https://github.com/LukaJCB/cats-bio) has been extremely useful at the beginning because of many similarities between `monix.eval.Task` and `cats.effect.IO` internals.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonix%2Fmonix-bio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonix%2Fmonix-bio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonix%2Fmonix-bio/lists"}