effect
effect copied to clipboard
Build production-ready applications in TypeScript
# Summary In the discussion, **@sukazavr** highlights the necessity for tooling within the Effect Typescript library to support both empty input and output cases. These cases are common in real-world...
### What version of Effect is running? https://github.com/Effect-TS/effect/commit/8883c83b5e7e8ba278f90732d8f8b5f1a995edb5 ### What steps can reproduce the bug? after entering devShell via direnv, and running `pnpm i` I get the following error: ```...
# Summary In the discussion, a user (adrian_g) inquired about the behavior of the `HttpApi` in the Effect Typescript library, specifically regarding the use of `Schema.Class` with `urlParams` and its...
# Summary The conversation revolves around an issue with type inference in the `Effect.liftPredicate` function from the Effect TypeScript library. The user, ttncrch, points out that the predicate's type is...
### What is the problem this feature would solve? No stack traces exist within the output when logging a `Cause.prettyError` containing a `Data.TaggedError` (with or without a `cause` field). ###...
# Summary A user is experiencing an issue with their Next.js application, specifically related to the Effect Typescript library reading the request body during server-side rendering (SSR). They provided an...
### What version of Effect is running? 3.14.1 ### What steps can reproduce the bug? ```ts import { Cause } from "effect"; const cause = Cause.fail("Error"); console.log(cause); if (Cause.isFailType(cause)) {...
### What version of Effect is running? 3.13.10 ### What steps can reproduce the bug? Documentation for GenericTag says key parameter is optional but signature doesn't allow it: ```ts /**...
# Summary The user "denishsharma" is experiencing an issue with a generic tagged enum type in the Effect Typescript library, specifically within an Effect Playground link they provided. The problem...
### What version of Effect is running? "effect": "^3.14.1" / "@effect/platform": "^0.80.1" ### What steps can reproduce the bug? Import any module from `@effect/platform` like: `import { HttpApiBuilder } from...