diff --git a/Readme.md b/Readme.md index 0bed30a66..17a1461c1 100644 --- a/Readme.md +++ b/Readme.md @@ -51,6 +51,8 @@ var prefix = require('superagent-prefix')('/static'); request .get('/some-url') + .query({ foo: 'fooValue', bar: 'barValue' }) + .auth('username', 'password') .use(prefix) // Prefixes *only* this request .use(nocache) // Prevents caching of *only* this request .end(function(err, res){