- What is NDJSON?
- Newline-delimited JSON — each line is a standalone JSON object. Popular for streaming logs, ML datasets, and APIs that push many records (ElasticSearch bulk API, OpenAI streaming, BigQuery exports).
- How is this different from a JSON array viewer?
- NDJSON doesn't wrap lines in `[...]`, so you can stream-parse line by line without buffering the whole file. Huge log files stay memory-friendly. The viewer respects this structure.
- Can I convert NDJSON to a JSON array?
- Yes — the tool has a 'wrap as array' toggle. Useful when pasting into tools that expect standard JSON, though you lose the streaming benefit.
- What happens if one line is invalid?
- Only that line is flagged; the others render normally. This is NDJSON's design — resilient to partial corruption in long log files.