effect-patterns-streams
Installation
SKILL.md
Effect-TS Patterns: Streams
This skill provides 8 curated Effect-TS patterns for streams. Use this skill when working on tasks related to:
- streams
- Best practices in Effect-TS applications
- Real-world patterns and solutions
🟢 Beginner Patterns
Stream Pattern 1: Transform Streams with Map and Filter
Rule: Use map and filter combinators to transform stream elements declaratively, creating pipelines that reshape data without materializing intermediate results.
Good Example:
This example demonstrates transforming a stream of raw data through multiple stages.