From efcd474ace424b8df28d97a580e906e8579df376 Mon Sep 17 00:00:00 2001 From: Fulton Byrne Date: Wed, 6 Jan 2016 11:11:09 -0500 Subject: [PATCH] Added documentation for request pass through. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4560d79..d5e16a3 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,10 @@ Cradle's API builds right on top of Node's asynch API. Every asynch method takes new(cradle.Connection)('http://living-room.couch', 5984, { cache: true, raw: false, - forceSave: true + forceSave: true, + request: { + //Pass through configuration to `request` library for all requests on this connection. + } }); ```