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 ### What steps can reproduce the bug? Set up a browser worker pool similar to this: ```ts const pool = yield* Worker.makePoolSerialized({...

bug
platform

### What is the problem this feature would solve? When dealing with schema evolution, it can be very useful to have a way to determine whether schema B is a...

enhancement
schema
Needs Proposal

### What version of Effect is running? 3.1.3 ### What steps can reproduce the bug? ```ts const task = () => Effect.fail(new Error('test')) as Effect.Effect; const makeTaskHandler = (testEventEmitter: EventEmitter)...

bug

# Summary The discussion revolves around configuring BunHttpServer for HTTPS. It is indeed possible to configure BunHttpServer to use HTTPS by passing `tls` options to the `layer` constructor. However, there's...

### What version of Effect is running? 3.1.2 ### What steps can reproduce the bug? ```ts import { Effect, Stream } from 'effect'; const intervalStream = Stream.async(() => {}).pipe(Stream.broadcastDynamic(Infinity)); const...

bug

### What is the problem this feature would solve? We have an extremely useful `Stream.concatAll` and `Stream.mergeAll` functions, but we don't have the same concept for zipping latest values. ###...

enhancement

### What is the problem this feature would solve? Currently `Schema.hash` / `AST.hash` is implemented using `Hash.string(JSON.stringify(ast, null, 2))` which is inefficient and for larger schemas turns into a bottleneck...

enhancement
schema
Needs Proposal

Added better logger support for Error instances

It would be nice to have an @effect/platform native file glob similar to https://www.npmjs.com/package/glob that could be used w/ any FileSystem implementation. (Bun has a built in implementation https://bun.sh/docs/api/glob)

enhancement

### What is the problem this feature would solve? The Exit module is missing getOrUndefined, getOrNull, etc. These should probably be updated to match the Either module. ### What is...

enhancement