Quick Start
User Interaction Flow
Configuration Levels
Data Sources
| Source | Use Case |
|---|---|
over: 'items' | Array in your code |
fromCsv: 'file.csv' | CSV file with rows |
fromFile: 'list.txt' | Text file (one item per line) |
Common Examples
Email Processing
Handle Errors Gracefully
API Reference
Loop
Loop class documentation
Best Practices
Set limits for safety
Set limits for safety
Use
maxIterations to prevent runaway loops. Default is 1000.Handle errors gracefully
Handle errors gracefully
Use
continueOnError: true to process all items even if some fail.Track progress
Track progress
Use
onIteration callback to show progress for long-running loops.
