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 is the problem this feature would solve? Traditionally, environment variables are string based. Modern runtimes such as Cloudflare's also put objects into the environment. Cloudflare calls these [bindings](https://developers.cloudflare.com/workers/runtime-apis/bindings/)....

enhancement

### What is the problem this feature would solve? When defining tagged template functions, it's often useful to format/dedent the `TemplateStringsArray` to allow for more legible use. Ie. **Bad** ```ts...

enhancement

# Summary The user is experiencing an issue after upgrading from version 3.13 to 3.16 of a library, specifically with the `Match` functionality they use to refine `unknown` types to...

### What is the problem this feature would solve? `generateObject` seemingly does not support specificity of tools. I'm not so sure if there's a clean solution to this. Tool-calling and...

enhancement

### What version of Effect is running? 3.15.4 ### What steps can reproduce the bug? 1. Create a `HttpClient` for fetching data 2. Create a `NextFetchHttpClientLive` from `FetchHttpClient.layer` 3. Set...

bug

### What version of Effect is running? @effect/sql-kysely 0.33.1 ### What steps can reproduce the bug? Create a `kysely` using `@effect/sql-kysely/Pg`. ```ts import * as PgKysely from "@effect/sql-kysely/Pg" import {...

bug

I see in the latest generated Anthropic PR (#4897) we parse `"refusal"` from the Anthropic API stop reason. Currently this would be parsed into AiResponse.FinishReason as `"unknown"`. Just wanted to...

### What is the problem this feature would solve? Currently, HttpMiddleware.logger uses Effect.log for server errors. Is there a specific reason why Effect.log is used in the current implementation? https://github.com/Effect-TS/effect/blob/8a8cbcc49a5d0266f476f17b4af2d827644fb199/packages/platform/src/internal/httpMiddleware.ts#L106-L110...

enhancement

### What version of Effect is running? 3.15.0 ### What steps can reproduce the bug? - Install `@effect/[email protected]` - Use `@effect/sql-drizzle/Pg` - Try creating a layer with `layerWithConfig` ```ts import...

bug

### What version of Effect is running? 3.15.2 ### What steps can reproduce the bug? https://effect.website/play/#1f6bb9163d58 ```ts export const nullableToRequired = (schema: S.Schema) => S.transformOrFail(S.NullOr(schema), schema, { decode: (fromA, _option,...

bug