Newline-delimited JSON (nd-json)

Instead of delivering a chunk of JSON:

{
  "Comments": [
    {"author": "Alex", "body": "…"},
    {"author": "Jake", "body": "…"}
  ]
}

…deliver each JSON object on a new line:

{"author": "Alex", "body": "…"}
{"author": "Jake", "body": "…"}