Playground
Encode objects to CSV and parse CSV into records, live. This runs the real csv-pipe in your browser, so what you see is exactly what the library produces.
Examples
Input (JSON)
Output (CSV)2 rows
name,email,age Alex Johnson,alex@example.com,29 Carlos Herrera,carlos@example.com,24
Code
ts
import { stringify } from 'csv-pipe';
stringify(data);Runs the real csv-pipe in your browser. Nothing is uploaded.
Ready to use it for real? See Getting started, the examples, or the API reference.