{"id":28377389,"url":"https://github.com/equilaterus/vortex","last_synced_at":"2025-10-16T14:56:55.276Z","repository":{"id":54326632,"uuid":"113936054","full_name":"equilaterus/Vortex","owner":"equilaterus","description":"Vortex is a .Net Standard framework focused on Functional Programming.","archived":false,"fork":false,"pushed_at":"2021-02-25T01:18:09.000Z","size":396,"stargazers_count":11,"open_issues_count":5,"forks_count":0,"subscribers_count":3,"default_branch":"dev","last_synced_at":"2025-06-06T01:25:32.328Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://equilaterus.github.io/Vortex/","language":"C#","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/equilaterus.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}},"created_at":"2017-12-12T03:00:25.000Z","updated_at":"2021-02-25T01:18:11.000Z","dependencies_parsed_at":"2022-08-13T12:10:11.033Z","dependency_job_id":null,"html_url":"https://github.com/equilaterus/Vortex","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/equilaterus/Vortex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equilaterus%2FVortex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equilaterus%2FVortex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equilaterus%2FVortex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equilaterus%2FVortex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/equilaterus","download_url":"https://codeload.github.com/equilaterus/Vortex/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equilaterus%2FVortex/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262122473,"owners_count":23262393,"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":[],"created_at":"2025-05-30T01:04:51.414Z","updated_at":"2025-10-16T14:56:50.224Z","avatar_url":"https://github.com/equilaterus.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vortex\n\n[![CodeFactor](https://www.codefactor.io/repository/github/equilaterus/vortex/badge)](https://www.codefactor.io/repository/github/equilaterus/vortex)   [![nuget](https://img.shields.io/nuget/v/Equilaterus.Vortex.svg)](https://www.nuget.org/packages/Equilaterus.Vortex/)\n\nVortex is a .Net Standard framework focused on **Functional Programming**.\n\nWrite **elegant** and **testeable** solutions on C# using a Monadic Framework that comes in two flavours:\n\n* From notation \n\n  ```csharp\n  await \n    // Try to create an order\n    from maybeOrder in\n        from order in _orderRepository.GetByIdAsync(orderId)\n        select OrderBehavior.TryCheckout(order)\n\n    // Update database\n    from result in maybeOrder.AwaitSideEffect(_orderRepository.UpdateAsync)\n\n    // Return results\n    select result.Match(Ok, InternalServerError(\"Error\"));\n  ```\n\n* Fluent notation\n\n  ```csharp\n  return await \n      // Try to create an order\n      _orderRepository.GetByIdAsync(orderId)    \n      .Select(order =\u003e OrderBehavior.TryCheckout(order))\n\n      // Update database\n      .SelectMany(m =\u003e m.AwaitSideEffect(_orderRepository.UpdateAsync))\n      \n      // Return results\n      .Select(m =\u003e m.Match(Ok, InternalServerError(\"Error\")));\n  ```\n\n## Builds\n\n* **Release**\n\n  [![Build status](https://ci.appveyor.com/api/projects/status/04uwh93rktkowhvk/branch/release?svg=true)](https://ci.appveyor.com/project/dacanizares/vortex/branch/release)  [![Build Status](https://travis-ci.org/equilaterus/Vortex.svg?branch=release)](https://travis-ci.org/equilaterus/Vortex)\n  [![nuget](https://img.shields.io/nuget/v/Equilaterus.Vortex.svg)](https://www.nuget.org/packages/Equilaterus.Vortex/)\n\n* **Master**\n\n  [![Build status](https://ci.appveyor.com/api/projects/status/04uwh93rktkowhvk/branch/master?svg=true)](https://ci.appveyor.com/project/dacanizares/vortex/branch/master)  [![Build Status](https://travis-ci.org/equilaterus/Vortex.svg?branch=master)](https://travis-ci.org/equilaterus/Vortex)\n\n* **Dev** Unstable\n\n  [![Build status](https://ci.appveyor.com/api/projects/status/04uwh93rktkowhvk/branch/dev?svg=true)](https://ci.appveyor.com/project/dacanizares/vortex/branch/dev) [![Build Status](https://travis-ci.org/equilaterus/Vortex.svg?branch=dev)](https://travis-ci.org/equilaterus/Vortex)\n\n\n## Releases\n\n* Download [nuget package](https://www.nuget.org/packages/Equilaterus.Vortex/)  \n\n* Download [GitHub releases](https://github.com/equilaterus/Vortex/releases)\n\n* See [version change log](https://github.com/equilaterus/Vortex/wiki/Version-change-log)\n\n\n## Links\n\n* [Official website](https://equilaterus.github.io/Vortex/)\n\n* [Sample Apps](https://github.com/equilaterus/Vortex.Samples)\n\n* [Vortex Wiki](https://github.com/equilaterus/Vortex/wiki)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fequilaterus%2Fvortex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fequilaterus%2Fvortex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fequilaterus%2Fvortex/lists"}