There is a pattern in node.js that the last argument in a function should be the callback with 2 params, and error and the other stufff
example:
send( options. function( err, response ){ if( !err ) { ...... } });