effect
effect copied to clipboard
Build production-ready applications in TypeScript
### What version of Effect is running? 3.1.4 ### What steps can reproduce the bug? ```ts const Doc = Schema.Struct({ id: Schema.String, desc: Schema.optional(Schema.String, { as: "Option" }), }); const...
… keys are related to a property signature transformation, closes #2743 ## Related - Closes #2743
### What version of Effect is running? 3.1.4 ### What steps can reproduce the bug? given this initial code: ```typescript import { Effect } from "effect"; class LoaderArgs extends Effect.Tag("@services/LoaderContext")<...
## Type - [ ] Refactor - [x] Feature - [ ] Bug Fix - [ ] Optimization - [ ] Documentation Update ## Description ## Related - Related Issue...
### What is the problem this feature would solve? Like the Effect.andThen, the Stream Api also needs some love. Natural candidates for andThen: map, mapEffect, flatMap -> andThen mapAccum, mapAccumEffect...
### What version of Effect is running? 3.1.3 ### What steps can reproduce the bug? 1. Set up a PostgreSQL container 2. Run the following code (make sure that the...
### What is the problem this feature would solve? A more declarative way to deal with date ranges and combinators over them in day to day work. A start to...
added platform `KeyValueStore.layerStorage` to create a KeyValueStore from an instance of the Storage type(e.g. SessionStorage and LocalStorage). Thoughts on the pathOrDescriptor arg? I'm not sure if that's a good idea.
## Type - [ ] Refactor - [ X] Feature - [ ] Bug Fix - [ ] Optimization - [ ] Documentation Update ## Description Add TSubscriptionRef for STM...
### What version of Effect is running? 3.1.2 ### What steps can reproduce the bug? ```ts import {Effect, TestClock, Console, Schedule} from "effect" const test = Effect.gen(function* () { const...