I've been looking at the code here and it doesn't feel as "nodey" as it should be.
agSender.Sender( url ).send( message, settings ) .on( "success", function( response ) { console.log( "success called", response ); }) .on( "error", function( err ) { console.log( err ); });
is currently how it is done.
i think i would like to change to
agSender.send( message, settings ) .on( "success", function( response ) { console.log( "success called", response ); }) .on( "error", function( err ) { console.log( err ); });