streams
Installation
SKILL.md
Node.js Streams Skill
Master streams for memory-efficient processing of large files, real-time data, and building composable data pipelines.
Quick Start
Streams in 4 types:
- Readable - Source of data (file, HTTP request)
- Writable - Destination (file, HTTP response)
- Transform - Modify data in transit
- Duplex - Both readable and writable
Core Concepts
Readable Stream
const fs = require('fs');