Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created August 29, 2014 18:45
Show Gist options
  • Save ajcrites/c5267566875098f88fc3 to your computer and use it in GitHub Desktop.
Save ajcrites/c5267566875098f88fc3 to your computer and use it in GitHub Desktop.
// Pipe Couch query for consumption by client
db.get(document)
.pipe(JSONStream(["rows", true, "value"], function (row) {
row.special_property = createSpecialProperty(row);
return row;
})
.pipe(JSONStream.stringify())
.pipe(response);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment