effect icon indicating copy to clipboard operation
effect copied to clipboard

Build production-ready applications in TypeScript

Results 479 effect issues
Sort by recently updated
recently updated
newest added

### 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...

bug
schema

… keys are related to a property signature transformation, closes #2743 ## Related - Closes #2743

schema

### 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")<...

Design Limitation

## 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...

enhancement

### 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...

bug

### 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...

enhancement

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...

working as intended